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.
2 parents 3df7f67 + fedb99c commit 96c74b2Copy full SHA for 96c74b2
tasks/runtime.yml
@@ -82,6 +82,14 @@
82
state: "{{ 'started' if openhpc_slurm_service_enabled | bool else 'stopped' }}"
83
when: openhpc_slurm_service is not none
84
85
+# Munge state could be unchanged but the service is not running.
86
+# Handle that here.
87
+- name: Ensure Munge services are enabled and started
88
+ service:
89
+ name: munge
90
+ enabled: "{{ openhpc_slurm_service_enabled | bool }}"
91
+ state: "{{ 'started' if openhpc_slurm_service_enabled | bool else 'stopped' }}"
92
+
93
# Install OpenHPC runtime
94
- name: Ensure selected OpenHPC packages are installed
95
yum:
0 commit comments