You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
295 B
YAML
18 lines
295 B
YAML
7 years ago
|
---
|
||
|
- name: install radvd
|
||
|
pacman:
|
||
|
name: radvd
|
||
|
state: present
|
||
|
|
||
|
- name: radvd config
|
||
|
template:
|
||
|
src: radvd.conf.j2
|
||
|
dest: /etc/radvd.conf
|
||
|
notify: restart radvd
|
||
|
|
||
|
- name: start and enable radvd
|
||
|
systemd:
|
||
|
name: radvd.service
|
||
|
enabled: yes
|
||
|
state: started
|