diff options
author | Jan Cholasta <jcholast@redhat.com> | 2013-01-31 11:56:00 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2013-03-01 16:59:46 +0100 |
commit | 8f46ca5dd20f2e69595dfb3bf9ab11d6f978dfbd (patch) | |
tree | 2a5771240b2e3f057009a98baa7fdb4dc1fb5224 /ipalib/plugins/cert.py | |
parent | bb36683c8480a68d54ef632daa0a4d6df9802187 (diff) | |
download | freeipa.git-8f46ca5dd20f2e69595dfb3bf9ab11d6f978dfbd.tar.gz freeipa.git-8f46ca5dd20f2e69595dfb3bf9ab11d6f978dfbd.tar.xz freeipa.git-8f46ca5dd20f2e69595dfb3bf9ab11d6f978dfbd.zip |
Preserve case of attribute names in LDAPEntry.
Diffstat (limited to 'ipalib/plugins/cert.py')
-rw-r--r-- | ipalib/plugins/cert.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/plugins/cert.py b/ipalib/plugins/cert.py index 6b84c723..a441a92a 100644 --- a/ipalib/plugins/cert.py +++ b/ipalib/plugins/cert.py @@ -346,11 +346,11 @@ class cert_request(VirtualCommand): # going to add it try: if not principal.startswith('host/'): - service = api.Command['service_show'](principal, all=True, raw=True)['result'] + service = api.Command['service_show'](principal, all=True)['result'] dn = service['dn'] else: hostname = get_host_from_principal(principal) - service = api.Command['host_show'](hostname, all=True, raw=True)['result'] + service = api.Command['host_show'](hostname, all=True)['result'] dn = service['dn'] except errors.NotFound, e: if not add: @@ -375,7 +375,7 @@ class cert_request(VirtualCommand): for name in subjectaltname: name = unicode(name) try: - hostentry = api.Command['host_show'](name, all=True, raw=True)['result'] + hostentry = api.Command['host_show'](name, all=True)['result'] hostdn = hostentry['dn'] except errors.NotFound: # We don't want to issue any certificates referencing @@ -385,7 +385,7 @@ class cert_request(VirtualCommand): 'subject alt name %s in certificate request') % name) authprincipal = getattr(context, 'principal') if authprincipal.startswith("host/"): - if not hostdn in service.get('managedby', []): + if not hostdn in service.get('managedby_host', []): raise errors.ACIError(info=_( "Insufficient privilege to create a certificate " "with subject alt name '%s'.") % name) |