15 lines
286 B
YAML
15 lines
286 B
YAML
---
|
|
- name: copy ifstated config
|
|
copy:
|
|
dest: /etc/ifstated.conf
|
|
src: "{{ ifstated_config }}"
|
|
mode: 0644
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|
|
notify: restart ifstated
|
|
|
|
- name: enable ifstated
|
|
service:
|
|
name: ifstated
|
|
state: started
|
|
enabled: true
|