khuedoan-homelab/metal/roles/wake/tasks/main.yml
2021-08-21 12:50:58 +00:00

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