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