-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build spack pyxis plugin Resolves #259
- Loading branch information
Showing
3 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
source/resources/playbooks/roles/ParallelClusterHeadNode/tasks/config-pyxis.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
# APC 3.11.0 added the pyxis Slurm Spank plugin | ||
# This needs to also be built on login nodes. | ||
# Currently, I am not doing that so until then, disable the Spank plugin by | ||
# renaming plugstack.conf | ||
|
||
- name: Rename plugstack.conf to plugstack.conf.back | ||
shell: | ||
cmd: | | ||
set -ex | ||
plugstack_conf=/opt/slurm/etc/plugstack.conf | ||
if [[ -e $plugstack_conf ]]; then | ||
mv $plugstack_conf ${plugstack_conf}.back | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters