configurations-ansible/roles/wakeonlan/tasks/main.yml
2023-01-05 16:01:31 +01:00

18 lines
471 B
YAML

---
# tasks file for wakeonlan
- name: Install and configure wakeonlan
when:
- "wakeonlan_enabled is true"
block:
- name: Gather package facts
package_facts:
manager: auto
- name: Install yggdrasil if not present
when: "'ethtool' not in ansible_facts.packages"
block:
- include_tasks: "install_{{ ansible_os_family }}.yml"
- include_tasks: "install_{{ ansible_service_mgr }}_service.yml"
ignore_errors: true