summaryrefslogtreecommitdiff
path: root/repo/heimdal/heimdal-kdc.initd
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2023-02-02 14:10:02 +0000
committerdavidovski <david@davidovski.xyz>2023-02-02 14:10:02 +0000
commitf29d569cd33a73da5ad675f43a34ad53c5cc9bc6 (patch)
tree76fe6267f8307e7630fc6f53ff99a9767ad40de0 /repo/heimdal/heimdal-kdc.initd
parent05d004dfe0c9a9d898fac8a4a0292ca2a74ca391 (diff)
Work
Diffstat (limited to 'repo/heimdal/heimdal-kdc.initd')
-rwxr-xr-xrepo/heimdal/heimdal-kdc.initd23
1 files changed, 0 insertions, 23 deletions
diff --git a/repo/heimdal/heimdal-kdc.initd b/repo/heimdal/heimdal-kdc.initd
deleted file mode 100755
index 32288c4..0000000
--- a/repo/heimdal/heimdal-kdc.initd
+++ /dev/null
@@ -1,23 +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-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 $?
-}