9d08571dcc
--HG-- extra : convert_revision : a6a118c58ee1ac50a1df444f1fd99a1165355889
24 lines
417 B
Text
24 lines
417 B
Text
#!/sbin/runscript
|
|
|
|
: ${PIDFILE:=/var/run/kpasswdd.pid}
|
|
|
|
depend()
|
|
{
|
|
need net localmount
|
|
provide kpasswdd
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "Starting Heimdal Kerberos kpasswdd"
|
|
start-stop-daemon --start --pidfile=${PIDFILE} --background \
|
|
--make-pidfile --exec /usr/libexec/kpasswdd -- ${KPASSWDD_ARGS}
|
|
eend $?
|
|
}
|
|
|
|
stop()
|
|
{
|
|
ebegin "Stopping Heimdal Kerberos kpasswdd"
|
|
start-stop-daemon --stop --pidfile ${PIDFILE}
|
|
eend $?
|
|
}
|