blob: d6f38a0e0940904e7c3a642435a078f649b2354b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
- name: Install XORP to provide IGMP router functionality
apt: pkg=xorp
- name: configure xorp
template: src=etc/xorp/config.boot dest=/etc/xorp/config.boot
notify:
- restart xorp
- name: set xorp defaults
lineinfile: dest=/etc/default/xorp regexp=^RUN= line=RUN=yes
notify:
- restart xorp
- meta: flush_handlers
- name: start and enable xorp service
service: name=xorp state=started enabled=yes
retries: 2
delay: 10
|