2021-06-08 19:00:56 +07:00
|
|
|
- name: Shutdown the homelab
|
2021-05-16 13:12:41 +07:00
|
|
|
hosts: metal
|
2021-12-26 12:12:36 +07:00
|
|
|
gather_facts: false
|
2021-05-16 13:12:41 +07:00
|
|
|
tasks:
|
2021-06-08 19:00:56 +07:00
|
|
|
- name: Unconditionally shut down the machine
|
2021-11-16 11:40:23 +07:00
|
|
|
community.general.shutdown:
|
|
|
|
delay: 0
|
2021-12-26 12:12:36 +07:00
|
|
|
ignore_unreachable: true
|
2021-05-16 13:12:41 +07:00
|
|
|
- name: Wait for the machine to shutdown
|
2021-05-19 22:27:48 +07:00
|
|
|
shell: "until ! ping -c 1 {{ ansible_host }}; do sleep 1; done"
|
2021-05-16 13:12:41 +07:00
|
|
|
delegate_to: localhost
|