diff options
-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 |