diff options
author | Ryan Steinmetz <zi@FreeBSD.org> | 2015-10-19 13:42:11 +0000 |
---|---|---|
committer | Ryan Steinmetz <zi@FreeBSD.org> | 2015-10-19 13:42:11 +0000 |
commit | e5c19fce71bf4f7582d0fd970db613300462d99a (patch) | |
tree | e19f6fd817c7c2d7add816cc64b6511391d0b3f9 | |
parent | c7c443ebb8150e5dfc1090b4640a95c93a534ff9 (diff) | |
download | freebsd-ports-e5c19fce71bf4f7582d0fd970db613300462d99a.zip |
- Update variable name in previous commit
- Bump PORTREVISION
-rw-r--r-- | security/kstart/Makefile | 2 | ||||
-rw-r--r-- | security/kstart/files/kstart.in | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/security/kstart/Makefile b/security/kstart/Makefile index 53e457cfac96..21f55efff1fd 100644 --- a/security/kstart/Makefile +++ b/security/kstart/Makefile @@ -3,7 +3,7 @@ PORTNAME= kstart DISTVERSION= 4.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security MASTER_SITES= http://archives.eyrie.org/software/kerberos/ diff --git a/security/kstart/files/kstart.in b/security/kstart/files/kstart.in index 4d5379523334..77a397b9bc41 100644 --- a/security/kstart/files/kstart.in +++ b/security/kstart/files/kstart.in @@ -28,16 +28,16 @@ pidfile="/var/run/kstart.pid" 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_sys_instances" ] && kstart_sys_instances="" -[ -z "$kstart_system_keytab" ] && kstart_system_keytab="$kstart_keytab" -[ -z "$kstart_system_flags" ] && kstart_system_flags="$kstart_flags" +[ -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_local_instances" ] && kstart_local_instances="" +[ -z "$kstart_system_keytab" ] && kstart_system_keytab="$kstart_keytab" +[ -z "$kstart_system_flags" ] && kstart_system_flags="$kstart_flags" -if [ -n "$kstart_sys_instances" ]; then - kstart_instances="$kstart_sys_instances $kstart_instances" +if [ -n "$kstart_local_instances" ]; then + kstart_instances="$kstart_instances $kstart_local_instances" fi if [ -n "$kstart_instances" ]; then |