15 lines
299 B
YAML
15 lines
299 B
YAML
---
|
|
- name: Copy config
|
|
ansible.builtin.template:
|
|
dest: /etc/unwind.conf
|
|
src: unwind.conf.j2
|
|
mode: "0644"
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|
|
notify: Restart unwind
|
|
|
|
- name: Enable service
|
|
ansible.builtin.service:
|
|
name: unwind
|
|
state: started
|
|
enabled: true
|