diff options
| author | Nalin Dahyabhai <nalin@fedoraproject.org> | 2006-10-23 20:23:05 +0000 |
|---|---|---|
| committer | Nalin Dahyabhai <nalin@fedoraproject.org> | 2006-10-23 20:23:05 +0000 |
| commit | 3ffdc438787355dc702dcbd69c77fcc7c297cf3d (patch) | |
| tree | 4a085c32bfd1888b52175825ff07cd42de1af9ba | |
| parent | 54faf415560c7e317998481cc163948ff631341c (diff) | |
- don't bail from the KDC init script if there's no database, it may be in
a different location than the default (fenlason)
- remove the [kdc] section from the default krb5.conf -- doesn't seem to
have been applicable for a while
| -rw-r--r-- | krb5.conf | 3 | ||||
| -rw-r--r-- | krb5.spec | 8 | ||||
| -rwxr-xr-x | krb5kdc.init | 3 |
3 files changed, 7 insertions, 7 deletions
@@ -21,9 +21,6 @@ .example.com = EXAMPLE.COM example.com = EXAMPLE.COM -[kdc] - profile = /var/kerberos/krb5kdc/kdc.conf - [appdefaults] pam = { debug = false @@ -10,7 +10,7 @@ Summary: The Kerberos network authentication system. Name: krb5 Version: 1.5 -Release: 9.99999 +Release: 11 # Maybe we should explode from the now-available-to-everybody tarball instead? # http://web.mit.edu/kerberos/dist/krb5/1.5/krb5-1.5-signed.tar Source0: krb5-%{version}.tar.gz @@ -133,6 +133,12 @@ network uses Kerberos, this package should be installed on every workstation. %changelog +* Mon Oct 23 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-11 +- don't bail from the KDC init script if there's no database, it may be in + a different location than the default (fenlason) +- remove the [kdc] section from the default krb5.conf -- doesn't seem to have + been applicable for a while + * Wed Oct 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-10 - rename krb5.sh and krb5.csh so that they don't overlap (#210623) - way-late application of added error info in kadmind.init (#65853) diff --git a/krb5kdc.init b/krb5kdc.init index 82b4088..76cb56c 100755 --- a/krb5kdc.init +++ b/krb5kdc.init @@ -28,9 +28,6 @@ krb5kdc=/usr/kerberos/sbin/krb5kdc # Sheel functions to cut down on useless shell instances. start() { - if [ ! -f /var/kerberos/krb5kdc/principal ] ; then - exit 0 - fi echo -n $"Starting $prog: " daemon ${krb5kdc} ${KRB5REALM:+-r ${KRB5REALM}} $KRB5KDC_ARGS RETVAL=$? |
