mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 08:26:49 +02:00
24 lines
552 B
Bash
Executable file
24 lines
552 B
Bash
Executable file
#!/sbin/openrc-run
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd,v 1.3 2004/09/13 22:44:54 solar Exp $
|
|
|
|
depend() {
|
|
need net
|
|
use heimdal-kdc
|
|
after logger
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting heimdal kpasswdd"
|
|
start-stop-daemon --background --start --quiet --exec \
|
|
/usr/sbin/kpasswdd
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping heimdal kpasswdd"
|
|
start-stop-daemon --stop --quiet --exec \
|
|
/usr/sbin/kpasswdd
|
|
eend $?
|
|
}
|