core/krb5/krb5-kpropd
2012-06-24 12:59:24 +00:00

41 lines
819 B
Bash

#!/bin/bash
# general config
. /etc/rc.conf
. /etc/rc.d/functions
PID=`pidof -o %PPID /usr/sbin/kpropd`
case "$1" in
start)
stat_busy "Starting Kerberos Database Propagation Daemon"
if [ -z "$PID" ]; then
/usr/sbin/kpropd -S
fi
if [ ! -z "$PID" -o $? -gt 0 ]; then
stat_fail
else
add_daemon kpropd
stat_done
fi
;;
stop)
stat_busy "Stopping Kerberos Database Propagation Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon kpropd
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
;;
esac
exit 0