khuedoan-homelab/metal/roles/pxe-boot/tasks/wake.yml
2021-03-03 01:25:56 +07:00

19 lines
458 B
YAML

- name: Unconditionally shut down the machine with all defaults
community.general.shutdown:
delay: 0
ignore_unreachable: yes
- name: Wait for the machine to shutdown
wait_for:
timeout: 30
delegate_to: localhost
- name: Send magic Wake-on-LAN packet
community.general.wakeonlan:
mac: "{{ hostvars[inventory_hostname]['mac'] }}"
delegate_to: localhost
- name: Wait for the servers to comes up
wait_for_connection:
timeout: 600