diff options
author | Markos Chandras <mchandras@suse.de> | 2018-03-14 08:01:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-14 08:01:27 +0000 |
commit | 990f97e9ebf417dd18e533cbbfec8977fe59f39a (patch) | |
tree | e2324d7e8b58f2588c3abda8bf03b48383a3c654 /xci/playbooks/roles/bootstrap-host/files | |
parent | 2c11cf6509eafafe80fa50657417b19a4458915e (diff) | |
parent | 7dd14e002128b5e6fe5302e6f7fe8620682a7d53 (diff) |
Merge "xci: Merge configure-network and syncronize-time roles"
Diffstat (limited to 'xci/playbooks/roles/bootstrap-host/files')
-rwxr-xr-x | xci/playbooks/roles/bootstrap-host/files/network-config-suse | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xci/playbooks/roles/bootstrap-host/files/network-config-suse b/xci/playbooks/roles/bootstrap-host/files/network-config-suse new file mode 100755 index 00000000..02cdd998 --- /dev/null +++ b/xci/playbooks/roles/bootstrap-host/files/network-config-suse @@ -0,0 +1,17 @@ +#!/bin/bash + +INTERFACE=$1 +ACTION=$4 + +if [[ $INTERFACE == "br-vlan" ]]; then + if [[ $ACTION == "pre-up" ]]; then + ip link add br-vlan-veth type veth peer name eth12 || true + ip link set br-vlan-veth up + ip link set eth12 up + brctl addif br-vlan br-vlan-veth + else + brctl delif br-vlan br-vlan-veth + ip link del br-vlan-veth || true + fi +fi + |