debian: Automatically up the slave interfaces of a bond.
[sliver-openvswitch.git] / debian / openvswitch-switch.postinst
index 4be5a30..ac6ed65 100755 (executable)
@@ -33,17 +33,6 @@ case "$1" in
                 fi
             done
        fi
-
-        if /etc/init.d/openvswitch-switch status >/dev/null 2>&1; then
-            running=true
-            /etc/init.d/openvswitch-switch stop
-        else
-            running=false
-        fi
-
-        if $running; then
-            /etc/init.d/openvswitch-switch start
-        fi
         ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)
@@ -55,8 +44,15 @@ case "$1" in
         ;;
 esac
 
-#DEBHELPER#
+# Do not fail package installation just because the kernel module
+# is not available.
+OVS_MISSING_KMOD_OK=yes
+export OVS_MISSING_KMOD_OK
 
-exit 0
+# Save and restore openflow flows during a package upgrade.
+OVS_RESTART_SAVE_FLOWS=yes
+export OVS_RESTART_SAVE_FLOWS
 
+#DEBHELPER#
 
+exit 0