khuedoan-homelab/metal/shutdown.yml
2021-05-19 22:27:48 +07:00

12 lines
370 B
YAML

- name: Install OS on empty nodes
hosts: metal
gather_facts: no
tasks:
- name: Unconditionally shut down the machine with all defaults
community.general.shutdown:
delay: 0
ignore_unreachable: yes
- name: Wait for the machine to shutdown
shell: "until ! ping -c 1 {{ ansible_host }}; do sleep 1; done"
delegate_to: localhost