diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-12-13 14:46:09 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-12-16 09:33:11 -0500 |
commit | 8f87aa1288fcb00607430de0bc707682c689a335 (patch) | |
tree | fe469e672c2617ebc9a78f0270d8eafa337dea12 /ipaserver | |
parent | fbe72a4521502b68c763d7f6234cf6dda6350e62 (diff) | |
download | freeipa-8f87aa1288fcb00607430de0bc707682c689a335.tar.gz freeipa-8f87aa1288fcb00607430de0bc707682c689a335.tar.xz freeipa-8f87aa1288fcb00607430de0bc707682c689a335.zip |
Add krb5-pkinit-openssl as a Requires on ipa-server package
ticket 599
Diffstat (limited to 'ipaserver')
-rw-r--r-- | ipaserver/install/krbinstance.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ipaserver/install/krbinstance.py b/ipaserver/install/krbinstance.py index 247b39009..c1e5a3f0a 100644 --- a/ipaserver/install/krbinstance.py +++ b/ipaserver/install/krbinstance.py @@ -49,16 +49,6 @@ from distutils import version KRBMKEY_DENY_ACI = '(targetattr = "krbMKey")(version 3.0; acl "No external access"; deny (read,write,search,compare) userdn != "ldap:///uid=kdc,cn=sysaccounts,cn=etc,$SUFFIX";)' -def check_pkinit_plugin(): - LIB32 = '/usr/lib/krb5/plugins/preauth/pkinit.so' - LIB64 = '/usr/lib64/krb5/plugins/preauth/pkinit.so' - if not os.path.exists(LIB32) and not os.path.exists(LIB64): - print "The pkinit plugin is missing" - print "Please install the 'krb5-pkinit-openssl' package and start the installation again" - return False - - return True - def update_key_val_in_file(filename, key, val): if os.path.exists(filename): pattern = "^[\s#]*%s\s*=\s*%s\s*" % (re.escape(key), re.escape(val)) |