From c4bb3c531cd070f9492e903ef3f4b3f229976b4b Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Thu, 6 Sep 2007 20:07:18 +0000 Subject: [PATCH] - fix incorrect call to test in the kadmin init script --- kadmind.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kadmind.init b/kadmind.init index 8c7e108..7e986e5 100755 --- a/kadmind.init +++ b/kadmind.init @@ -32,7 +32,7 @@ start() { if [ ! -f /var/kerberos/krb5kdc/principal ] ; then # Make an educated guess -- if they're using kldap somewhere, # then we don't know for sure that this is an error. - if [ ! grep -q 'db_library.*=.*kldap' /etc/krb5.conf ] ; then + if ! grep -q 'db_library.*=.*kldap' /etc/krb5.conf ; then echo $"Error. Default principal database does not exist." fi exit 0