mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2026-03-23 08:51:56 +01:00
Fixes https://gitlab.archlinux.org/archlinux/infrastructure/-/issues/658 Signed-off-by: Christian Heusel <christian@heusel.eu>
10 lines
183 B
YAML
10 lines
183 B
YAML
- name: List logged on users
|
|
command: who
|
|
register: who
|
|
|
|
- name: Abort reboot with logged on users
|
|
meta: end_host
|
|
when:
|
|
- who is changed
|
|
- who.stdout_lines|length > 1
|