diff options
author | Arun Isaac | 2024-08-29 14:37:23 +0100 |
---|---|---|
committer | Arun Isaac | 2024-08-29 14:37:23 +0100 |
commit | 3598c1afca58e3767e4323cca227d9c9660c414e (patch) | |
tree | d9f1e5a0da21b98668ae7931d6dbfe4f6ae120d3 /slurm-worker-deploy.sh | |
parent | 090e1ca67f7c9f641f19aac8593f64962d4d3130 (diff) | |
download | gn-machines-3598c1afca58e3767e4323cca227d9c9660c414e.tar.gz |
Install slurmrestd too.
* slurm-worker-deploy.sh: Install slurmrestd too.
Diffstat (limited to 'slurm-worker-deploy.sh')
-rwxr-xr-x | slurm-worker-deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slurm-worker-deploy.sh b/slurm-worker-deploy.sh index cf7a583..ff939c9 100755 --- a/slurm-worker-deploy.sh +++ b/slurm-worker-deploy.sh @@ -17,7 +17,7 @@ esac # Symlink slurm daemon executables and systemd service files. # for executable in slurmctld slurmdbd slurmd slurmrestd; -for executable in slurmctld slurmdbd slurmd; +for executable in slurmctld slurmdbd slurmrestd slurmd; do sudo ln --force --symbolic $slurm/sbin/$executable /usr/local/sbin/$executable sudo ln --force --symbolic $slurm/etc/$executable.service /etc/systemd/system/$executable.service |