aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/neutron-network/tasks/igmp-router.yml
blob: c9406ca3f6ebfadc6758cacd0d56dc6d9f37eb17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
- name: Install XORP to provide IGMP router functionality
  action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  with_items: xorp_packages

- name: create xorp directory
  file: path=/etc/xorp state=directory

- name: configure xorp
  template: src=etc/xorp/config.boot dest=/etc/xorp/config.boot
  notify:
    - restart xorp

- name: set xorp defaults
  copy: src=xorp dest=/etc/default/xorp
  notify:
    - restart xorp

- meta: flush_handlers

- name: start and enable xorp service
  service: name=xorp state=started enabled=yes
  retries: 2
  delay: 10