Re: [Freeipa-devel] [PATCH] Make ldap2.convert_attr_synonyms more robust against schema lookup fails.

2009-12-02 Thread Martin Nagy
On Fri, 2009-11-20 at 09:32 -0500, Rob Crittenden wrote: Pavel Zuna wrote: Rob Crittenden wrote: Pavel Zuna wrote: Rob Crittenden wrote: Pavel Zuna wrote: Rob Crittenden wrote: The user plugin is crapping out on line 317 of ldap2.py because attr is coming back None. The attribute

Re: [Freeipa-devel] [PATCH] Remove unnecessary error: prefixes

2009-12-02 Thread Martin Nagy
On Tue, 2009-12-01 at 10:12 -0500, Rob Crittenden wrote: Martin Nagy wrote: Martin ack Pushed to master. Martin ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeipa-devel

[Freeipa-devel] Problem with ipa installation: certutil

2009-12-02 Thread Martin Nagy
Hi, I'm trying to install ipa and am getting a python traceback (attached). It seems that running certutil didn't succeed so I added a debugging print before it's execution and tried to run it manually. This is what I get: # /usr/bin/certutil -d /etc/httpd/alias -S -n 'CA certificate' -s 'cn=IPA

Re: [Freeipa-devel] [PATCH] 322 set minimum level of python-pyasn1

2009-12-02 Thread Rob Crittenden
Jason Gerard DeRose wrote: On Tue, 2009-12-01 at 14:04 -0500, Rob Crittenden wrote: Update the spec to set minimum version of python-pyasn1 to 0.0.9a so we can have the ASN.1 Any type needed by the PKCS#10 parser. rob nack. This introduces a bug in the spec: error: line 89: Unknown tag:

Re: [Freeipa-devel] Problem with ipa installation: certutil

2009-12-02 Thread Rob Crittenden
Martin Nagy wrote: Hi, I'm trying to install ipa and am getting a python traceback (attached). It seems that running certutil didn't succeed so I added a debugging print before it's execution and tried to run it manually. This is what I get: # /usr/bin/certutil -d /etc/httpd/alias -S -n 'CA

[Freeipa-devel] service record conundrum

2009-12-02 Thread Rob Crittenden
Here is sort of a tricky problem, need some advice (LONG). When we bootstrap an IPA server we create a number of principals for the server itself. We create a host/, HTTP/ and ldap/ principal using kadmin.local. By using kadmin.local this entry is put into cn=kerberos,dc=example,dc=com.

[Freeipa-devel] [PATCH] jderose 028 Lossless datetime round-trip

2009-12-02 Thread Jason Gerard DeRose
As per John's request, this patch allows lossless round-tripping of Python datetime.datetime objects. Unfortunately, the xmlrpclib dumps() and loads() functions use funny wrapper objects like xmlrpclib.DateTime rather than directly serializing to/from standard Python types like datetime.datetime.