blob: 51821b09ca0cd71f4c8bcd25b0ffb676713fceb4 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
---
- name: disable NetworkManager
service: name=NetworkManager state=stopped enabled=no
when: ansible_os_family == 'RedHat'
- name: enable network service
service: name=network state=started enabled=yes
when: ansible_os_family == 'RedHat'
- name: add ovs bridge
openvswitch_bridge: bridge={{ item["name"] }} state=present
with_items: "{{ network_cfg['provider_net_mappings'] }}"
when: 'item["type"] == "ovs"'
- name: add ovs uplink
openvswitch_port: bridge={{ item["name"] }} port={{ item["interface"] }} state=present
with_items: "{{ network_cfg['provider_net_mappings'] }}"
when: 'item["type"] == "ovs"'
- name: add ovs uplink
shell: ip link set {{ item["interface"] }} up
with_items: "{{ network_cfg['provider_net_mappings'] }}"
when: 'item["type"] == "ovs"'
- name: ensure script dir exist
shell: mkdir -p /opt/setup_networks
- name: copy scripts
copy: src={{ item }} dest=/opt/setup_networks
with_items:
- setup_networks/log.py
- setup_networks/setup_networks.py
- name: copy boot scripts
copy: src={{ item }} dest=/etc/init.d/ mode=0755
with_items:
- setup_networks/net_init
- name: copy config files
template: src=network.cfg dest=/opt/setup_networks
- name: make sure python lib exist
action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
with_items:
- python-yaml
- python-netaddr
- name: run scripts
shell: python /opt/setup_networks/setup_networks.py
- name: add to boot scripts
service: name=net_init enabled=yes
- meta: flush_handlers
|