Import kstart-3.16.
k5start, and krenew are modified versions of kinit which add support for running as a daemon to maintain a ticket cache, running a command with credentials from a keytab and maintaining a ticket cache until that command completes, obtaining AFS tokens (via an external aklog) after obtaining tickets, and creating an AFS PAG for a command. They are primarily useful in conjunction with long-running jobs; for moving ticket handling code out of servers, cron jobs, or daemons; and to obtain tickets and AFS tokens with a single command.
This commit is contained in:
parent
ee3aa62b1b
commit
2418d05171
4 changed files with 48 additions and 0 deletions
9
security/kstart/DESCR
Normal file
9
security/kstart/DESCR
Normal file
|
@ -0,0 +1,9 @@
|
|||
k5start, and krenew are modified versions of kinit which add support
|
||||
for running as a daemon to maintain a ticket cache, running a
|
||||
command with credentials from a keytab and maintaining a ticket
|
||||
cache until that command completes, obtaining AFS tokens (via an
|
||||
external aklog) after obtaining tickets, and creating an AFS PAG
|
||||
for a command. They are primarily useful in conjunction with
|
||||
long-running jobs; for moving ticket handling code out of servers,
|
||||
cron jobs, or daemons; and to obtain tickets and AFS tokens with
|
||||
a single command.
|
29
security/kstart/Makefile
Normal file
29
security/kstart/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2010/04/15 20:23:03 jakllsch Exp $
|
||||
|
||||
DISTNAME= kstart-3.16
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://archives.eyrie.org/software/kerberos/
|
||||
|
||||
MAINTAINER= jakllsch@NetBSD.org
|
||||
HOMEPAGE= http://www.eyrie.org/~eagle/software/kstart/
|
||||
COMMENT= Kerberos v5 kinit daemon that uses keytabs
|
||||
LICENSE= mit
|
||||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
CONFIGURE_ARGS+= --disable-k4start
|
||||
CONFIGURE_ARGS+= --enable-setpag
|
||||
|
||||
# As the NetBSD base system doesn't ship with afslog
|
||||
# and pkgsrc heimdal and pkgsrc openafs conflict;
|
||||
# the path to (ak|afs)log is configurable.
|
||||
|
||||
BUILD_DEFS+= KSTART_PATH_AKLOG
|
||||
KSTART_PATH_AKLOG?= ${PREFIX}/bin/afslog
|
||||
.include "../../mk/bsd.prefs.mk"
|
||||
CONFIGURE_ARGS+= --with-aklog=${KSTART_PATH_AKLOG:Q}
|
||||
|
||||
.include "../../mk/krb5.buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
5
security/kstart/PLIST
Normal file
5
security/kstart/PLIST
Normal file
|
@ -0,0 +1,5 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2010/04/15 20:23:03 jakllsch Exp $
|
||||
bin/k5start
|
||||
man/man1/k5start.1
|
||||
bin/krenew
|
||||
man/man1/krenew.1
|
5
security/kstart/distinfo
Normal file
5
security/kstart/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2010/04/15 20:23:03 jakllsch Exp $
|
||||
|
||||
SHA1 (kstart-3.16.tar.gz) = cd04209b260cad72b0798f7dade2fe94a6fd6eda
|
||||
RMD160 (kstart-3.16.tar.gz) = 49a529f7932dd9de6c2bdc516afe35b174e136f0
|
||||
Size (kstart-3.16.tar.gz) = 256268 bytes
|
Loading…
Reference in a new issue