mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 23:10:22 +07:00
13 lines
313 B
YAML
13 lines
313 B
YAML
- 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:
|
|
host: '{{ ansible_host }}'
|
|
port: 22
|
|
search_regex: OpenSSH
|
|
timeout: 600
|
|
delegate_to: localhost
|