14 lines
241 B
YAML
14 lines
241 B
YAML
---
|
|
- name: Reboots linux host and checks status
|
|
hosts: all
|
|
roles:
|
|
- common
|
|
become: yes
|
|
|
|
tasks:
|
|
|
|
- name: Rebooting...
|
|
reboot:
|
|
reboot_timeout: 60
|
|
msg: Reboot issued by Ansible
|
|
test_command: whoami |