mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 09:11:38 +01:00
24 lines
514 B
Plaintext
Executable File
24 lines
514 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# 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-kdc,v 1.2 2004/09/13 15:40:34 dragonheart Exp $
|
|
|
|
depend() {
|
|
need net
|
|
after logger
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting heimdal kdc"
|
|
start-stop-daemon --start --quiet --exec \
|
|
/usr/sbin/kdc -- --detach
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping heimdal kdc"
|
|
start-stop-daemon --stop --quiet --exec \
|
|
/usr/sbin/kdc
|
|
eend $?
|
|
}
|