[Freeipa-devel] [PATCH] Add --all to LDAPCreate and make LDAP commands always display default attributes.

2010-01-11 Thread Pavel Zuna
This is actually an old patch that got lost in the depths of freeipa-devel. There was just one issue with it, that it always assumed that the --all parameter is present (because it is required in the baseclass). I fixed it and now use the fail-safe: options.get('all', False) The Kerberos Tick

Re: [Freeipa-devel] [PATCH] Add Kerberos Ticket Policy management plugin.

2010-01-11 Thread Pavel Zuna
Rob Crittenden wrote: Pavel Zuna wrote: Alright, here's my first shot at the Kerberos Ticket Policy management plugin. It is also a "new type" of plugin. What I mean by that is that it takes an optional primary key (username) as its first argument. If used, policy for a specific user is bein

[Freeipa-devel] [PATCH] 346 add pki-cad support to ipactl

2010-01-11 Thread Rob Crittenden
Add support for starting/stopping the CA to ipactl rob freeipa-346-ipactl.patch Description: application/mbox ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeipa-devel

Re: [Freeipa-devel] [PATCH] Allow creation of new connections by unshared instances of backend.Connectible.

2010-01-11 Thread Pavel Zuna
Jason Gerard DeRose wrote: On Tue, 2010-01-05 at 14:10 +0100, Pavel Zuna wrote: The backend.Connectible base class was designed, so that only one instance of each subclass is used at a time. Connectible generates a Connection object for each thread and stores it in thread-local storage (context

Re: [Freeipa-devel] [PATCH] 345 fix pwpolicy plugin

2010-01-11 Thread Pavel Zuna
Rob Crittenden wrote: Allow the priority to be updated and fix the description of priority ordering. Lower wins, not higher. I also had to add the option to not normalize to a few more functions in ldap2. I have to craft a very specifically-formatted DN for it to be understood by the krb5 ser

[Freeipa-devel] [PATCH] 347 do status on right service in installer

2010-01-11 Thread Rob Crittenden
Remove one more hardcoded reference to the pki-ca service and use self.service_name instead. rob freeipa-347-ca.patch Description: application/mbox ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeip

Re: [Freeipa-devel] [PATCH] Add --all to LDAPCreate and make LDAP commands always display default attributes.

2010-01-11 Thread Rob Crittenden
Pavel Zuna wrote: This is actually an old patch that got lost in the depths of freeipa-devel. There was just one issue with it, that it always assumed that the --all parameter is present (because it is required in the baseclass). I fixed it and now use the fail-safe: options.get('all', False)

Re: [Freeipa-devel] [PATCH] 347 do status on right service in installer

2010-01-11 Thread Rob Crittenden
Pavel Zuna wrote: Rob Crittenden wrote: Remove one more hardcoded reference to the pki-ca service and use self.service_name instead. rob ack. Pavel pushed to master ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/

Re: [Freeipa-devel] [PATCH] 346 add pki-cad support to ipactl

2010-01-11 Thread Pavel Zuna
Rob Crittenden wrote: Add support for starting/stopping the CA to ipactl rob ack. Pavel ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeipa-devel

Re: [Freeipa-devel] [PATCH] 347 do status on right service in installer

2010-01-11 Thread Pavel Zuna
Rob Crittenden wrote: Remove one more hardcoded reference to the pki-ca service and use self.service_name instead. rob ack. Pavel ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeipa-devel

Re: [Freeipa-devel] [PATCH] 346 add pki-cad support to ipactl

2010-01-11 Thread Rob Crittenden
Pavel Zuna wrote: Rob Crittenden wrote: Add support for starting/stopping the CA to ipactl rob ack. Pavel pushed to master ___ Freeipa-devel mailing list Freeipa-devel@redhat.com https://www.redhat.com/mailman/listinfo/freeipa-devel

[Freeipa-devel] [PATCH] jderose 033 Fix fuzzy digigits under Fedora12

2010-01-11 Thread Jason Gerard DeRose
I'm not sure why the difference, but the uidnumber, gidnumber, etc. are being returned as `unicode` instead of `str` under Fedora12. Returning as `unicode` is correct, but this patch allows the test to still work under Fedora11 for the time being. >From dafbfc22cccff32ff847a2e2eced09ac8c881378 Mo

Re: [Freeipa-devel] [PATCH] Allow creation of new connections by unshared instances of backend.Connectible.

2010-01-11 Thread Rob Crittenden
Pavel Zuna wrote: Jason Gerard DeRose wrote: On Tue, 2010-01-05 at 14:10 +0100, Pavel Zuna wrote: The backend.Connectible base class was designed, so that only one instance of each subclass is used at a time. Connectible generates a Connection object for each thread and stores it in thread-loc

Re: [Freeipa-devel] [PATCH] Improve modlist generation in ldap2. Some code cleanup as bonus.

2010-01-11 Thread Jason Gerard DeRose
On Tue, 2010-01-05 at 15:01 +0100, Pavel Zuna wrote: > ldap2._generate_modlist now uses more sophisticated means to decide when to > use > MOD_ADD+MOD_DELETE instead of MOD_REPLACE. Before it did MOD_REPLACE only on > attributes explicitly specified in ldap2._FORCE_REPLACE_ON_UPDATE_ATTRS. Now