2017-05-18 21:10:07 +00:00
|
|
|
---
|
2018-07-07 17:37:56 +00:00
|
|
|
- block:
|
2019-01-09 20:51:48 +00:00
|
|
|
- name: Restart network
|
2019-06-21 06:14:05 +00:00
|
|
|
shell: 'sleep 2 && systemctl restart network'
|
2019-01-09 20:51:48 +00:00
|
|
|
async: 1
|
|
|
|
poll: 0
|
2019-06-21 06:06:43 +00:00
|
|
|
ignore_errors: yes
|
2019-06-20 20:57:34 +00:00
|
|
|
when: not require_reboot | bool
|
2019-01-09 20:51:48 +00:00
|
|
|
listen: __network_restart
|
2017-05-18 21:10:07 +00:00
|
|
|
|
2019-01-09 20:51:48 +00:00
|
|
|
- name: Reboot server
|
2019-06-21 06:14:05 +00:00
|
|
|
shell: 'sleep 2 && shutdown -r now "Reboot triggered by Ansible"'
|
2019-01-09 20:51:48 +00:00
|
|
|
async: 1
|
|
|
|
poll: 0
|
2019-06-21 06:06:43 +00:00
|
|
|
ignore_errors: yes
|
2019-06-20 20:57:34 +00:00
|
|
|
when: require_reboot | bool
|
2019-01-09 20:51:48 +00:00
|
|
|
listen: __host_reboot
|
2018-07-07 17:37:56 +00:00
|
|
|
become: True
|
2019-01-09 20:51:48 +00:00
|
|
|
become_user: root
|
2017-05-18 21:10:07 +00:00
|
|
|
|
2018-07-06 21:20:38 +00:00
|
|
|
- name: Waiting for host startup
|
|
|
|
wait_for_connection:
|
2018-07-01 22:39:35 +00:00
|
|
|
delay: 5
|
|
|
|
timeout: 300
|
2017-05-18 21:10:07 +00:00
|
|
|
listen:
|
2019-01-09 20:51:48 +00:00
|
|
|
- __network_restart
|
|
|
|
- __host_reboot
|