2017-01-10 15:11:42 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Reboot the machine gets more complicated as we want to support bastion hosts. A simple wait_for task would not work
|
|
|
|
# as we can not directly reach the hosts (except the bastion). In case a basion is used, we first check for it to come
|
|
|
|
# back. After it is back, we check for all the hosts by delegating to the bastion.
|
|
|
|
|
|
|
|
- name: Rebooting server
|
|
|
|
shell: nohup bash -c "sleep 5 && shutdown -r now 'Reboot required for updated kernel'" &
|
|
|
|
|
|
|
|
- name: Wait for some seconds
|
2017-02-17 21:22:34 +00:00
|
|
|
pause:
|
|
|
|
seconds: 10
|
2017-01-10 15:11:42 +00:00
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
is_bastion: "{{ inventory_hostname == 'bastion' }}"
|
|
|
|
wait_for_delegate: "localhost"
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2017-01-10 15:11:42 +00:00
|
|
|
- set_fact:
|
|
|
|
wait_for_delegate: "{{hostvars['bastion']['ansible_ssh_host']}}"
|
2017-04-26 12:11:13 +00:00
|
|
|
when: "'bastion' in groups['all']"
|
2017-01-10 15:11:42 +00:00
|
|
|
|
|
|
|
- name: wait for bastion to come back
|
2017-02-17 21:22:34 +00:00
|
|
|
wait_for:
|
|
|
|
host: "{{ ansible_ssh_host }}"
|
|
|
|
port: 22
|
|
|
|
delay: 10
|
|
|
|
timeout: 300
|
2017-01-10 15:11:42 +00:00
|
|
|
become: false
|
|
|
|
delegate_to: localhost
|
2017-04-26 12:11:13 +00:00
|
|
|
when: is_bastion
|
2017-01-10 15:11:42 +00:00
|
|
|
|
|
|
|
- name: waiting for server to come back (using bastion if necessary)
|
2017-02-17 21:22:34 +00:00
|
|
|
wait_for:
|
|
|
|
host: "{{ ansible_ssh_host }}"
|
|
|
|
port: 22
|
|
|
|
delay: 10
|
|
|
|
timeout: 300
|
2017-01-10 15:11:42 +00:00
|
|
|
become: false
|
|
|
|
delegate_to: "{{ wait_for_delegate }}"
|
2017-04-26 12:11:13 +00:00
|
|
|
when: not is_bastion
|