Add radvd role
This commit is contained in:
parent
7ffb1e7699
commit
0814e628c5
4 changed files with 42 additions and 0 deletions
16
roles/radvd/tasks/main.yml
Normal file
16
roles/radvd/tasks/main.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
- name: Install packages
|
||||
package:
|
||||
name:
|
||||
- radvd
|
||||
|
||||
- name: Configure radvd
|
||||
template:
|
||||
dest: /etc/radvd.conf
|
||||
src: radvd.conf.j2
|
||||
notify: reload radvd
|
||||
|
||||
- name: Enable radvd service
|
||||
service:
|
||||
name: radvd
|
||||
enabled: true
|
||||
state: started
|
Loading…
Add table
Add a link
Reference in a new issue