#!/bin/sh
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
    set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides:          gssproxy
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Controls operation of the gssproxy daemon
### END INIT INFO

# Author: Robbie Harwood <rharwood@club.cc.cmu.edu>

DESC="GSS-Proxy privilege separation daemon"
DAEMON=/usr/sbin/gssproxy
NAME=gssproxy
DAEMON_ARGS=-D

# see also: #807311
do_reload_sighup() {
        log_daemon_msg "Reloading $DESC configuration files" "$NAME"
        start-stop-daemon --oknodo --stop --signal 1 --quiet \
          --pidfile "$PIDFILE" --exec "$DAEMON"
        log_end_msg $?
}
alias do_reload=do_reload_sighup
