From 6bb69cc080eeb0a4c652fcb6865c8e7193c5f371 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 | 15 +++++++++++++++ 1 file changed, 15 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..80f09c5 --- /dev/null +++ b/playbooks/reboot_test.yaml @@ -0,0 +1,15 @@ +--- +- name: reboot test + hosts: all + tasks: + - name: debug before + ansible.builtin.debug: + msg: before + + - name: reboot + ansible.builtin.include_role: + name: reboot + + - name: debug after + ansible.builtin.debug: + msg: after