khuedoan-homelab/metal/shutdown.yml

12 lines
341 B
YAML
Raw Normal View History

2021-06-08 19:00:56 +07:00
- name: Shutdown the homelab
hosts: metal
gather_facts: no
tasks:
2021-06-08 19:00:56 +07:00
- name: Unconditionally shut down the machine
2021-06-14 00:09:28 +07:00
raw: poweroff
ignore_errors: yes
ignore_unreachable: yes
- 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"
delegate_to: localhost