summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/reboot/tasks/check_reboot.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/reboot/tasks/check_reboot.yml')
-rw-r--r--test/integration/targets/reboot/tasks/check_reboot.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/targets/reboot/tasks/check_reboot.yml b/test/integration/targets/reboot/tasks/check_reboot.yml
new file mode 100644
index 0000000..059c422
--- /dev/null
+++ b/test/integration/targets/reboot/tasks/check_reboot.yml
@@ -0,0 +1,10 @@
+- name: Get current boot time
+ command: "{{ _boot_time_command[ansible_facts['distribution'] | lower] | default('cat /proc/sys/kernel/random/boot_id') }}"
+ register: after_boot_time
+
+- name: Ensure system was actually rebooted
+ assert:
+ that:
+ - reboot_result is changed
+ - reboot_result.elapsed > 10
+ - before_boot_time.stdout != after_boot_time.stdout