mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 15:28:11 +07:00
19 lines
458 B
YAML
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
|