summaryrefslogtreecommitdiffstats
path: root/kadmind.init
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@fedoraproject.org>2005-02-24 23:16:08 +0000
committerNalin Dahyabhai <nalin@fedoraproject.org>2005-02-24 23:16:08 +0000
commit708fedd9ea5c0d1cefe5c3f6be417d56017d6051 (patch)
tree9c547ef1e6b6261aaa48ba60e0cef45f664be894 /kadmind.init
parente7236e5850268bffb4cd4effc70745cd78c7acff (diff)
downloadkrb5-708fedd9ea5c0d1cefe5c3f6be417d56017d6051.tar.gz
krb5-708fedd9ea5c0d1cefe5c3f6be417d56017d6051.tar.xz
krb5-708fedd9ea5c0d1cefe5c3f6be417d56017d6051.zip
- update to 1.4
- v1.4 kadmin client requires a v1.4 kadmind on the server, or use the "-O" flag to specify that it should communicate with the server using the older protocol - new libkrb5support library - v5passwdd and kadmind4 are gone - versioned symbols - pick up $KRB5KDC_ARGS from /etc/sysconfig/krb5kdc, if it exists, and pass it on to krb5kdc - pick up $KADMIND_ARGS from /etc/sysconfig/kadmin, if it exists, and pass it on to kadmind - pick up $KRB524D_ARGS from /etc/sysconfig/krb524, if it exists, and pass it on to krb524d *instead of* "-m" - set "forwardable" in [libdefaults] in the default krb5.conf to match the default setting which we supply for pam_krb5 - set a default of 24h for "ticket_lifetime" in [libdefaults], reflecting the compiled-in default
Diffstat (limited to 'kadmind.init')
-rwxr-xr-xkadmind.init5
1 files changed, 4 insertions, 1 deletions
diff --git a/kadmind.init b/kadmind.init
index 13cb1ac..45e9e98 100755
--- a/kadmind.init
+++ b/kadmind.init
@@ -16,6 +16,9 @@
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
+# Get config.
+[ -r /etc/sysconfig/kadmin ] && . /etc/sysconfig/kadmin
+
# Source function library.
. /etc/init.d/functions
prog="Kerberos 5 Admin Server"
@@ -38,7 +41,7 @@ start() {
fi
fi
echo -n $"Starting $prog: "
- daemon ${kadmind}
+ daemon ${kadmind} $KADMIND_ARGS
RETVAL=$?
echo
[ $RETVAL = 0 ] && touch /var/lock/subsys/kadmin