slackbuilds_ponce/network/heimdal/config/rc.kpasswdd
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
460 B
Bash

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