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