20 lines
540 B
YAML
20 lines
540 B
YAML
|
- name: Setup systemd
|
||
|
when: 'is_docker is not true'
|
||
|
block:
|
||
|
- name: Install systemd files
|
||
|
ansible.builtin.template:
|
||
|
src: '{{ item.src }}'
|
||
|
dest: '/{{ item.path }}'
|
||
|
with_community.general.filetree: '../templates/systemd/'
|
||
|
vars:
|
||
|
interface: "{{ wakeonlan_interface }}"
|
||
|
mode: "{{ wakeonlan_mode }}"
|
||
|
when: item.state == 'file'
|
||
|
|
||
|
- name: Enable service
|
||
|
ansible.builtin.systemd:
|
||
|
name: wol-enable
|
||
|
state: started
|
||
|
enabled: true
|
||
|
daemon_reload: yes
|