[Freeipa-devel] [PATCH] jderose 022 Change Password param

2009-10-16 Thread Jason Gerard DeRose
This patch allows you do provide a Password as a two item tuple or list (the password plus the password confirmation). This is the most natural way for this to work through the UI. >From 8ecb97ca00600f05643f6844ab5c317d79857626 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Fri, 16 Oct

[Freeipa-devel] [PATCH] 297 use proper template string

2009-10-16 Thread Rob Crittenden
I goofed and didn't replace my test domain with a template string for some virtual operations. rob freeipa-297-template.patch Description: application/mbox smime.p7s Description: S/MIME Cryptographic Signature ___ Freeipa-devel mailing list Freeipa

Re: [Freeipa-devel] [PATCH] 294 sleep before doing a task

2009-10-16 Thread Rob Crittenden
Pavel Zuna wrote: Rob Crittenden wrote: One of the last steps of an install is to run through any updates. This change adds a sleep() prior to calling tasks to ensure postop writes are done We were seeing a rare deadlock of DS when creating the memberOf task because one thread was adding mem

Re: [Freeipa-devel] [PATCH] 293 use fqdn

2009-10-16 Thread Rob Crittenden
Simo Sorce wrote: On Mon, 2009-10-12 at 11:32 -0400, Rob Crittenden wrote: Use getfqdn() instead of the gethostname(). self.ca_host could end up as the same value as self.host and if this isn't fully-qualified then SSL client requests won't work (we query the CA over SSL). Ack Simo. push

Re: [Freeipa-devel] [PATCH] 296 work with newer schema layout of 389-DS

2009-10-16 Thread Rob Crittenden
Simo Sorce wrote: On Wed, 2009-10-14 at 11:53 -0400, Rob Crittenden wrote: The HEAD branch of upstream of 389-DS has lots new schema stuff. We have to work around some incompatibilities with the DNS schema in 05rfc2247.ldif but this isn't required in the HEAD, so don't fail if we can't replace

Re: [Freeipa-devel] [PATCH] jderose 023 Fixed 'import json' for simplejson compatability

2009-10-16 Thread Jason Gerard DeRose
On Fri, 2009-10-16 at 14:49 -0400, Rob Crittenden wrote: > Jason Gerard DeRose wrote: > > This fixes `import json` for Python < 2.6. I'm just using the same > > compat.py from wehjit. > > > > > > ack pushed to master with incorrect copyright year fixed in compat.py

Re: [Freeipa-devel] [PATCH] jderose 023 Fixed 'import json' for simplejson compatability

2009-10-16 Thread Rob Crittenden
Jason Gerard DeRose wrote: This fixes `import json` for Python < 2.6. I'm just using the same compat.py from wehjit. ack smime.p7s Description: S/MIME Cryptographic Signature ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redh

[Freeipa-devel] [PATCH] jderose 023 Fixed 'import json' for simplejson compatability

2009-10-16 Thread Jason Gerard DeRose
This fixes `import json` for Python < 2.6. I'm just using the same compat.py from wehjit. >From 292530a1e245657bc80d4a0a9f23e82144ca2e17 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Fri, 16 Oct 2009 11:58:28 -0600 Subject: [PATCH] Fixed 'import json' for simplejson compatability ---

Re: [Freeipa-devel] [PATCH] 294 sleep before doing a task

2009-10-16 Thread Rob Crittenden
Simo Sorce wrote: On Thu, 2009-10-15 at 15:28 +0200, Pavel Zuna wrote: Rob Crittenden wrote: One of the last steps of an install is to run through any updates. This change adds a sleep() prior to calling tasks to ensure postop writes are done We were seeing a rare deadlock of DS when creatin

[Freeipa-devel] [PATCH] fix for python < 2.6

2009-10-16 Thread Rob Crittenden
parse_qs is in cgi on Python < 2.6, use that instead. Python 2.6's cgi module calls the parse_qs in urlparse for backwards compatibility. I had originally done a try/except ImportError but since this is already specifically handled for backwards compatibility by the cgi module I went with that