mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
12 lines
370 B
YAML
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
|