Ubuntu Pastebin

Paste from martin at Wed, 4 Feb 2015 07:13:28 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
--- /usr/sbin/invoke-rc.d	2015-01-12 11:21:36.000000000 +0100
+++ /usr/sbin/invoke-rc.d	2015-02-04 08:13:00.115721965 +0100
@@ -603,7 +603,7 @@
                         if [ "$_canreload" = "CanReload=no" ]; then
                             "${INITDPREFIX}${INITSCRIPTID}" "${saction}" "$@" && exit 0
                         else
-                            systemctl reload "${UNIT}" && exit 0
+                            systemctl --no-block reload "${UNIT}" && exit 0
                         fi
                         ;;
                     force-stop)
@@ -614,7 +614,7 @@
                         if [ "$_canreload" = "CanReload=no" ]; then
                            systemctl restart "${UNIT}" && exit 0
                         else
-                           systemctl reload "${UNIT}" && exit 0
+                           systemctl --no-block reload "${UNIT}" && exit 0
                         fi
                         ;;
                     *)
Download as text