slackbuilds_ponce/network/heimdal/config/rc.kdc
Thibaut Notteboom f14ca0920d network/heimdal: Updated for version 7.1.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-02-21 16:44:32 +07:00

34 lines
404 B
Bash

#!/bin/sh
kdc_start() {
if [ -x /usr/libexec/kdc ]; then
echo "Starting the kdc service: /usr/libexec/kdc --detach"
/usr/libexec/kdc --detach
fi
}
kdc_stop() {
killall kdc
}
kdc_restart() {
kdc_stop
sleep 1
kdc_start
}
case "$1" in
'start')
kdc_start
;;
'stop')
kdc_stop
;;
'restart')
kdc_restart
;;
*)
echo "Usage: $0 start|stop|restart"
;;
esac