forked from FF-RGB/ansible
12 lines
226 B
YAML
12 lines
226 B
YAML
---
|
|
|
|
- name: Install radvd
|
|
apt: name=radvd
|
|
|
|
- name: Configure radvd
|
|
template: src=radvd.conf.j2 dest=/etc/radvd.conf
|
|
notify: Restart radvd
|
|
|
|
- name: Start the radvd service
|
|
service: name=radvd state=started enabled=yes
|