init scripts: Don't error out when stopping in restart action
[hcoop/domtool2.git] / scripts / domtool-slave
index 2d5588f..2653813 100755 (executable)
@@ -35,7 +35,7 @@ case $1 in
        ;;
 
   restart|reload|force-reload)
-       $SELF stop
+       set +e; $SELF stop; set -e
        $SELF start
        ;;