ansible-ffibk/roles/service-radvd/tasks/main.yml

18 lines
302 B
YAML
Raw Normal View History

---
- name: install radvd packages
package:
name: radvd
state: present
- name: configure radvd
template:
src: radvd.conf.j2
dest: /etc/radvd.conf
2017-10-03 20:43:23 +02:00
notify: restart systemd unit radvd
2017-10-26 22:35:55 +02:00
- name: enable systemd unit radvd
systemd:
name: radvd
enabled: yes
state: started