summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/roles/bootstrap-host/files/network-config-suse
diff options
context:
space:
mode:
Diffstat (limited to 'xci/playbooks/roles/bootstrap-host/files/network-config-suse')
-rwxr-xr-xxci/playbooks/roles/bootstrap-host/files/network-config-suse17
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
+