svn commit: r378933 - in head/security/kstart: . files
Ryan Steinmetz
zi at FreeBSD.org
Fri Feb 13 14:54:47 UTC 2015
Author: zi
Date: Fri Feb 13 14:54:46 2015
New Revision: 378933
URL: https://svnweb.freebsd.org/changeset/ports/378933
QAT: https://qat.redports.org/buildarchive/r378933/
Log:
- Always use instances logic in rc script. This should make it easier to start with one instance and add others without complexity.
- Bump PORTREVISION
Modified:
head/security/kstart/Makefile
head/security/kstart/files/kstart.in
Modified: head/security/kstart/Makefile
==============================================================================
--- head/security/kstart/Makefile Fri Feb 13 14:27:20 2015 (r378932)
+++ head/security/kstart/Makefile Fri Feb 13 14:54:46 2015 (r378933)
@@ -3,7 +3,7 @@
PORTNAME= kstart
DISTVERSION= 4.1
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= http://archives.eyrie.org/software/kerberos/
Modified: head/security/kstart/files/kstart.in
==============================================================================
--- head/security/kstart/files/kstart.in Fri Feb 13 14:27:20 2015 (r378932)
+++ head/security/kstart/files/kstart.in Fri Feb 13 14:54:46 2015 (r378933)
@@ -31,6 +31,9 @@ load_rc_config $name
[ -z "$kstart_enable" ] && kstart_enable="NO"
[ -z "$kstart_keytab" ] && kstart_keytab="/etc/krb5.keytab"
[ -z "$kstart_flags" ] && kstart_flags="-LUFK 120"
+[ -z "$kstart_instances" ] && kstart_instances="system"
+[ -z "$kstart_system_keytab" ] && kstart_system_keytab="$kstart_keytab"
+[ -z "$kstart_system_flags" ] && kstart_system_flags="$kstart_flags"
if [ -n "$kstart_instances" ]; then
_1=$1
More information about the svn-ports-all
mailing list