mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
11 lines
374 B
YAML
11 lines
374 B
YAML
|
- 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
|