From 22bb558b5ca149dbc927406d63541c81dc6d06a7 Mon Sep 17 00:00:00 2001 From: June Date: Mon, 30 Jun 2025 22:26:33 +0200 Subject: [PATCH] temp: reboot test playbook --- playbooks/reboot_test.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 playbooks/reboot_test.yaml diff --git a/playbooks/reboot_test.yaml b/playbooks/reboot_test.yaml new file mode 100644 index 0000000..f5ab24c --- /dev/null +++ b/playbooks/reboot_test.yaml @@ -0,0 +1,14 @@ +--- +- name: reboot test + hosts: all + tasks: + - name: debug before + ansible.builtin.debug: + msg: before + + - name: reboot + ansible.builtin.reboot: + + - name: debug after + ansible.builtin.debug: + msg: after