X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=debian%2Fmetaproxy.init;h=adfdd8121c9d8f9353f1850f3ebac4eee451fc69;hb=b57a6b7bf769f8642e062d96b5f47101ab9416ee;hp=3f19eee2e6873641cc6fe8ff3c9ca90fc34d5e3d;hpb=81f90a08f9a6dc1a850293d09ecb87ae27311e35;p=metaproxy-moved-to-github.git diff --git a/debian/metaproxy.init b/debian/metaproxy.init index 3f19eee..adfdd81 100644 --- a/debian/metaproxy.init +++ b/debian/metaproxy.init @@ -88,8 +88,9 @@ do_reload() { # If the daemon can reload its configuration without # restarting (for example, when it is sent a SIGHUP), # then implement that here. - # - start-stop-daemon --stop --signal USR1 --quiet --pidfile $PIDFILE --name $NAME + + $DAEMON -t $DAEMON_OPTS > /dev/null || return 2 + start-stop-daemon --stop --signal USR1 --quiet --retry=5 --pidfile $PIDFILE --name $NAME RETVAL="$?" # Return if daemon could not be stopped [ "$RETVAL" = 2 ] && return 2 @@ -131,9 +132,15 @@ case "$1" in # If do_reload() is not implemented then leave this commented out # and leave 'force-reload' as an alias for 'restart'. # - log_daemon_msg "Reloading $DESC" "$NAME" - do_reload - log_end_msg $? + # our reload makes a new PID. systemd doesn't allow it. MP-620 + if test -n "$_use_systemctl"; then + log_daemon_msg "Using systemd. Not reloading $DESC" "$NAME" + log_end_msg 0 + else + log_daemon_msg "Reloading $DESC" "$NAME" + do_reload + log_end_msg $? + fi ;; restart) # @@ -157,8 +164,15 @@ case "$1" in ;; esac ;; + checkconfig) + $DAEMON -t $DAEMON_OPTS > /dev/null || exit 2 + exit 0 + ;; + status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? + ;; *) - echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $SCRIPTNAME {start|stop|status|restart|reload|force-reload}" >&2 exit 3 ;; esac