blob: cf157d74c949f18632a2dd0244be4f4c6742257b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: remove bridge ubuntu
template:
src: compute.j2
dest: /etc/network/interfaces
notify:
- restart network service
when: ansible_distribution == 'Ubuntu'
# TODO
# - name: remove bridge centos
# when: ansible_distribution == 'CentOS'
|