You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
608 B
25 lines
608 B
#!/sbin/openrc-run
|
|
|
|
#---------------------------------------------------------------------------
|
|
# This script starts/stops the MIT Kerberos 5 kpropd
|
|
#---------------------------------------------------------------------------
|
|
|
|
daemon="MIT Kerberos 5 kpropd"
|
|
exec="/usr/sbin/kpropd"
|
|
|
|
depend() {
|
|
use net mit-krb5kdc mit-krb5kadmind
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting $daemon"
|
|
start-stop-daemon --start --quiet --exec ${exec} -- ${KPROPD_OPTS} 1>&2
|
|
eend $? "Error starting $daemon"
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping $daemon"
|
|
start-stop-daemon --stop --quiet --exec ${exec} 1>&2
|
|
eend $? "Error stopping $daemon"
|
|
}
|