khuedoan-homelab/metal/shutdown.yml

12 lines
351 B
YAML
Raw Normal View History

2021-06-08 19:00:56 +07:00
- name: Shutdown the homelab
hosts: metal
2021-12-26 12:12:36 +07:00
gather_facts: false
tasks:
2021-06-08 19:00:56 +07:00
- name: Unconditionally shut down the machine
community.general.shutdown:
delay: 0
2021-12-26 12:12:36 +07:00
ignore_unreachable: true
- 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