Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / debian / openvswitch-switch.postinst
index 4be5a30..2464572 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,16 @@ 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
+# force-reload-kmod during upgrade. If a user wants to override this,
+# they can set the variable OVS_FORCE_RELOAD_KMOD=no while installing.
+[ -z "${OVS_FORCE_RELOAD_KMOD}" ] && OVS_FORCE_RELOAD_KMOD=yes || true
+export OVS_FORCE_RELOAD_KMOD
 
+#DEBHELPER#
 
+exit 0