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

17 lines
283 B
YAML
Raw Normal View History

---
- name: install radvd packages
package:
name: radvd
state: present
- 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