summaryrefslogtreecommitdiff
path: root/user/heimdal/heimdal-kadmind.initd
diff options
context:
space:
mode:
Diffstat (limited to 'user/heimdal/heimdal-kadmind.initd')
-rwxr-xr-xuser/heimdal/heimdal-kadmind.initd24
1 files changed, 0 insertions, 24 deletions
diff --git a/user/heimdal/heimdal-kadmind.initd b/user/heimdal/heimdal-kadmind.initd
deleted file mode 100755
index 73f23815c..000000000
--- a/user/heimdal/heimdal-kadmind.initd
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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-kadmind,v 1.3 2004/09/13 22:44:54 solar Exp $
-
-depend() {
- need net
- use heimdal-kdc
- after logger
-}
-
-start() {
- ebegin "Starting heimdal kadmind"
- /usr/sbin/kadmind &
- echo $! > /var/run/heimdal-kadmind.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping heimdal kadmind"
- start-stop-daemon --stop --quiet --exec \
- /usr/sbin/kadmind
- eend $?
-}