khuedoan-homelab/metal/shutdown.yml
2021-12-26 12:12:36 +07:00

12 lines
351 B
YAML

- name: Shutdown the homelab
hosts: metal
gather_facts: false
tasks:
- name: Unconditionally shut down the machine
community.general.shutdown:
delay: 0
ignore_unreachable: true
- name: Wait for the machine to shutdown
shell: "until ! ping -c 1 {{ ansible_host }}; do sleep 1; done"
delegate_to: localhost