diff options
author | Arun Isaac | 2024-08-29 13:15:58 +0100 |
---|---|---|
committer | Arun Isaac | 2024-08-29 13:18:15 +0100 |
commit | 090e1ca67f7c9f641f19aac8593f64962d4d3130 (patch) | |
tree | d19027575c6289b60ff98f8bf4bc0260cc45eb8d /slurm-deploy.sh | |
parent | 57ea20615fc0b32ccab0f986a6f483cec124e198 (diff) | |
download | gn-machines-090e1ca67f7c9f641f19aac8593f64962d4d3130.tar.gz |
Add slurm deployment scripts for octopus.
* slurm-deploy.sh: Delete file.
* slurm-head-deploy.sh, slurm-worker-deploy.sh: New files.
* slurm.scm: Replace tux04 with octopus in comment.
Diffstat (limited to 'slurm-deploy.sh')
-rwxr-xr-x | slurm-deploy.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/slurm-deploy.sh b/slurm-deploy.sh deleted file mode 100755 index 8118d56..0000000 --- a/slurm-deploy.sh +++ /dev/null @@ -1,19 +0,0 @@ -#! /bin/sh -xe - -## -## Test slurm deployment on tux04 -## - -slurm=$(guix build -f slurm.scm) -echo $slurm - -# Symlink slurm daemon executables and systemd service files. -for executable in slurmctld slurmdbd slurmd slurmrestd; -do - sudo ln --no-target-directory --force --symbolic $slurm/sbin/$executable /usr/local/sbin/$executable - sudo ln --no-target-directory --force --symbolic $slurm/etc/$executable.service /etc/systemd/system/$executable.service -done - -# It is enough to register one gcroot as that marks the whole store -# item as live. -sudo ln --force --symbolic /usr/local/sbin/slurmd /var/guix/gcroots |