ansible-ffrgb/roles/radvd/tasks/main.yml

12 lines
226 B
YAML
Raw Normal View History

2018-01-23 23:57:23 +01:00
---
- name: Install radvd
2018-07-26 10:57:58 +02:00
apt: name=radvd
2018-01-23 23:57:23 +01:00
- name: Configure radvd
template: src=radvd.conf.j2 dest=/etc/radvd.conf
2018-01-23 23:57:23 +01:00
notify: Restart radvd
- name: Start the radvd service
2018-07-26 10:57:58 +02:00
service: name=radvd state=started enabled=yes