ansible/roles/radvd/tasks/main.yml

20 lines
416 B
YAML
Raw Normal View History

2020-08-01 12:56:23 +02:00
---
# Warning: radvd installation seems to fail if the configuration
# file doesn't already exist when the package is installed,
# so the order is important.
- name: Configure radvd
template:
src: radvd.conf.j2
dest: /etc/radvd.conf
mode: 0644
notify: restart radvd
2020-08-01 17:48:39 +02:00
tags:
- radconf
2020-08-01 12:56:23 +02:00
- name: Install radvd
apt:
update_cache: true
name: radvd
state: present
notify: restart radvd