
Moved roles to the parent directory so that different adapters don't have duplicated roles in their respective paths. Change-Id: Ia71c473b33fed94276d4d0b4764b2f4ab2e988e0
21 lines
449 B
YAML
21 lines
449 B
YAML
---
|
|
- 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
|