15 lines
221 B
YAML
15 lines
221 B
YAML
---
|
|
- name: Reboot the Ubuntu VMs
|
|
hosts: all
|
|
gather_facts: no
|
|
roles:
|
|
- common
|
|
become: yes
|
|
|
|
tasks:
|
|
|
|
- name: Rebooting...
|
|
reboot:
|
|
msg: "Reboot initiated by Ansible"
|
|
test_command: uptime
|