2017-09-05 12:01:27 +02:00
|
|
|
---
|
|
|
|
- name: install radvd packages
|
|
|
|
apt:
|
|
|
|
name: radvd
|
|
|
|
state: present
|
2017-10-03 20:43:23 +02:00
|
|
|
notify: reload systemd
|
2017-09-05 12:01:27 +02:00
|
|
|
|
|
|
|
- name: enable systemd unit radvd
|
|
|
|
systemd:
|
|
|
|
name: radvd
|
|
|
|
enabled: yes
|
|
|
|
|
|
|
|
- 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
|