5f8003f633
for the "db4" option and just rely on the appropriate BDB_* settings via bdb.buildlink3.mk. Also, we tweak the builtin.mk file so use krb5-config, if it's available, to check the version of the built-in heimdal. Patches patch-ab, patch-ae and patch-af have been sent back upstream and will be incorporated into future Heimdal releases. Changes between version 0.6.5 and version 0.7.1 include: * Support for KCM, a process based credential cache * Support CCAPI credential cache * SPNEGO support * AES (and the gssapi conterpart, CFX) support * Adding new and improve old documentation * Bug fixes
18 lines
322 B
Bash
18 lines
322 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: kcm.sh,v 1.1 2005/10/26 15:12:45 jlam Exp $
|
|
#
|
|
# PROVIDE: kcm
|
|
# REQUIRE: NETWORKING
|
|
# BEFORE: SERVERS
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="kcm"
|
|
rcvar=$name
|
|
command="@PREFIX@/libexec/${name}"
|
|
command_args="--detach"
|
|
required_files="@PKG_SYSCONFDIR@/krb5.conf"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|