X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/cf1be826ae357936594618d1a580d4b26e92493f..0d3fb301bcae781d585bdecf534ed18769d91bce:/scripts/domtool-slave diff --git a/scripts/domtool-slave b/scripts/domtool-slave index 2653813..dabbb70 100755 --- a/scripts/domtool-slave +++ b/scripts/domtool-slave @@ -1,11 +1,26 @@ #!/usr/bin/pagsh.openafs +# -*- sh -*- -# This script should go in /etc/init.d/ on Debian Linux systems running Domtool slaves. +# This script should go in /etc/init.d/ on Debian Linux systems +# running Domtool slaves. + +# This script is NOT lsb compliant by a long shot... need to fix that +# We need nscd running to lookup afs users for whatever reason + +### BEGIN INIT INFO +# Provides: domtool-slave +# Required-Start: $remote_fs $network $time openafs-client nscd +# Required-Stop: $remote_fs $network openafs-client nscd +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Domtool Slave +# Description: Launches the domtool slave +### END INIT INFO SELF=$(cd $(dirname $0); pwd -P)/$(basename $0) -PIDFILE="/var/run/k5start-domtool-slave.pid" +PIDFILE="/var/run/domtool/k5start-slave.pid" -set -e +. /lib/lsb/init-functions case $1 in start) @@ -13,12 +28,18 @@ case $1 in if sudo -u domtool domtool-admin-sudo slave-ping; then echo "...already running." else + PIDDIR=$(dirname "$PIDFILE") + if test ! -d "$PIDDIR"; then + mkdir -m 0750 $PIDDIR + chown domtool:nogroup $PIDDIR + fi + start-stop-daemon --start --pidfile $PIDFILE \ - -c domtool:domtool \ + -c domtool:nogroup \ --exec /usr/bin/k5start -- -U -b \ -f /etc/keytabs/domtool \ -K 300 -t -p $PIDFILE \ - domtool-slave-logged + /usr/local/bin/domtool-slave-logged echo "." fi ;;