2016-05-18 11:44:03 +03:00
|
|
|
#!/sbin/openrc-run
|
2013-01-17 18:47:14 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2013-01-17 18:47:14 +04:00
|
|
|
|
|
|
|
depend() {
|
|
|
|
use net heimdal-kdc
|
|
|
|
after logger
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
ebegin "Starting Heimdal kpasswdd"
|
|
|
|
start-stop-daemon --background --start --quiet --exec \
|
|
|
|
/usr/sbin/kpasswdd -- "${OPTIONS}"
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ebegin "Stopping Heimdal kpasswdd"
|
|
|
|
start-stop-daemon --stop --quiet --exec \
|
|
|
|
/usr/sbin/kpasswdd
|
|
|
|
eend $?
|
|
|
|
}
|