diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-03-11 10:38:28 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-03-11 10:38:28 +0000 |
commit | bb3c293a86c9ad9e1f80fb1a35fbf216e7b54b5f (patch) | |
tree | 0f96d6dbc94715d0e18b408905a108c09b9d4e1d /user/heimdal/heimdal-kpasswdd.initd | |
parent | 00aa49a062ccc758c333353409d4e4c0065a2482 (diff) | |
download | packages-bb3c293a86c9ad9e1f80fb1a35fbf216e7b54b5f.tar.gz packages-bb3c293a86c9ad9e1f80fb1a35fbf216e7b54b5f.tar.bz2 packages-bb3c293a86c9ad9e1f80fb1a35fbf216e7b54b5f.tar.xz packages-bb3c293a86c9ad9e1f80fb1a35fbf216e7b54b5f.zip |
user/heimdal: move to legacy/
Diffstat (limited to 'user/heimdal/heimdal-kpasswdd.initd')
-rwxr-xr-x | user/heimdal/heimdal-kpasswdd.initd | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/user/heimdal/heimdal-kpasswdd.initd b/user/heimdal/heimdal-kpasswdd.initd deleted file mode 100755 index 5fc21e0dc..000000000 --- a/user/heimdal/heimdal-kpasswdd.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-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 $? -} |