We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec0dad commit a599130Copy full SHA for a599130
tasks/runtime.yml
@@ -41,6 +41,14 @@
41
delegate_to: "{{ openhpc_slurm_control_host }}"
42
when: openhpc_slurm_control_host in ansible_play_hosts
43
44
+- name: Fix permissions on /etc to pass Munge startup checks
45
+ # Rocky-9-GenericCloud-Base-9.4-20240523.0.x86_64.qcow2 makes /etc g=rwx rather than g=rx (where group=root)
46
+ # which fails munged startup checks
47
+ file:
48
+ path: /etc
49
+ state: directory
50
+ mode: g-w
51
+
52
- name: Write Munge key
53
copy:
54
content: "{{ openhpc_munge_key or (openhpc_control_munge_key.content | b64decode) }}"
0 commit comments