Skip to content

Commit bbffa7f

Browse files
committed
[DNM] Debugging
1 parent ba7bb2a commit bbffa7f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tasks/runtime.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,26 @@
110110
name: munge
111111
state: "{{ 'restarted' if _openhpc_munge_key_copy.changed else 'started' }}"
112112
when: openhpc_slurm_service_started | bool
113+
ignore_errors: true
114+
115+
- name: Run systemctl status munge.service
116+
command: systemctl status munge.service
117+
register: munge_systemctl
118+
119+
- name: Display output of systemctl status munge.service
120+
debug:
121+
var: munge_systemctl.stdout
122+
123+
- name: Run journalctl -xeu munge.service
124+
command: journalctl -xeu munge.service
125+
register: munge_journalctl
126+
127+
- name: Display output of journalctl -xeu munge.service
128+
debug:
129+
var: munge_journalctl.stdout
130+
131+
- name: Stop for debug
132+
fail:
113133

114134
- name: Check slurmdbd state
115135
command: systemctl is-active slurmdbd # noqa: command-instead-of-module

0 commit comments

Comments
 (0)