summarylogtreecommitdiffstats
path: root/pyxis.install
blob: 4bbe71d10f69630de84787118e7b9041cf2367ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    mkdir -p /etc/slurm-llnl/plugstack.conf.d
    ln -s /usr/share/pyxis/pyxis.conf /etc/slurm-llnl/plugstack.conf.d/pyxis.conf
    systemctl restart slurmd
}

post_upgrade() {
	if [[ ! -f "/etc/slurm-llnl/plugstack.conf.d/pyxis.conf" ]]
  	then
  		post_install
  	fi
    systemctl restart slurmd
}