fuel-ccp-installer/resources/virt_iface/1.0.0/actions/run.yaml

20 lines
701 B
YAML

- hosts: [{{host}}]
become: yes
tasks:
- package: name=bridge-utils state=present
- template:
src: {{templates_dir}}/ifcfg
dest: /etc/sysconfig/network-scripts/ifcfg-{{name}}
when: ansible_distribution == "Fedora"
- service: name=network.service state=restarted
when: ansible_distribution == "Fedora"
- template:
src: {{templates_dir}}/ifcfg
dest: /etc/network/interfaces.d/{{name}}.cfg
when: ansible_distribution == "Ubuntu"
- shell: brctl addbr {{name}}
when: ansible_distribution == "Ubuntu"
ignore_errors: True
- service: name=networking.service state=restarted
when: ansible_distribution == "Ubuntu"