summaryrefslogtreecommitdiffstats
path: root/net/kvm-ifdown
diff options
context:
space:
mode:
Diffstat (limited to 'net/kvm-ifdown')
-rwxr-xr-xnet/kvm-ifdown14
1 files changed, 6 insertions, 8 deletions
diff --git a/net/kvm-ifdown b/net/kvm-ifdown
index b1d7c2f..39cbf36 100755
--- a/net/kvm-ifdown
+++ b/net/kvm-ifdown
@@ -1,12 +1,10 @@
#!/bin/sh
-
-. /usr/share/kvm-wrapper/net/kvm-net.conf
+#
+# Script called by kvm on tap interface creation
+#
echo "$0:"
-
-echo "Removing $1 from bridge $BRIDGE"
-ip link set $1 down
-brctl delif "$BRIDGE" $1
-
-exit 0
+echo "Removing $1 from bridge $KVM_BRIDGE"
+ip link set "$1" down
+brctl delif "$KVM_BRIDGE" "$1"