--- /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
;;
*)