openvswitch: Remove Linux bridge compatibility.
[sliver-openvswitch.git] / debian / openvswitch-brcompat.postinst
diff --git a/debian/openvswitch-brcompat.postinst b/debian/openvswitch-brcompat.postinst
deleted file mode 100755 (executable)
index 12e3b05..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# If openvswitch-switch is installed, and then later openvswitch-brcompat is
-# installed, make sure that ovs-brcompatd starts.
-if test X"$1" = Xconfigure && \
-   test -x /etc/init.d/openvswitch-switch && \
-   test -e /var/run/openvswitch/ovs-vswitchd.pid; then
-    invoke-rc.d openvswitch-switch start || exit $?
-fi
-
-#DEBHELPER#
-
-exit 0
-
-