Re: [SSSD] [PATCH] Add support for terminating idle connections in sssd_nss

2012-06-15 Thread Stephen Gallagher
On Wed, 2012-05-30 at 16:27 -0400, Dmitri Pal wrote: > On 05/30/2012 09:08 AM, Simo Sorce wrote: > > On Wed, 2012-05-30 at 08:23 -0400, Stephen Gallagher wrote: > >> This patch was submitted by Shantanu Goel in a Trac ticket. Sending to > >> the list for review. I haven't yet had a chance to dig in

[SSSD] Announcing SSSD 1.9.0 beta 2

2012-06-15 Thread Stephen Gallagher
The SSSD team is proud to announce the second beta of our upcoming 1.9.0 release. We have revised our beta plan and will be having five betas instead of three as originally communicated. Originally, the plan was to have our next beta be the final one, at the end of July. We now have the following s

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Stephen Gallagher
On Fri, 2012-06-15 at 20:21 +0200, Jan Zeleny wrote: > Stephen Gallagher wrote: > > On Fri, 2012-06-15 at 19:53 +0200, Jan Zeleny wrote: > > > Stephen Gallagher wrote: > > > > All changes requested above have been made, including avoiding the > > > > shadowing (in new patch 0003). > > > > > > >

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Jan Zeleny
Stephen Gallagher wrote: > On Fri, 2012-06-15 at 19:53 +0200, Jan Zeleny wrote: > > Stephen Gallagher wrote: > > > All changes requested above have been made, including avoiding the > > > shadowing (in new patch 0003). > > > > > > I've completed my testing to my satisfaction with no additional c

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Stephen Gallagher
On Fri, 2012-06-15 at 19:53 +0200, Jan Zeleny wrote: > Stephen Gallagher wrote: > > > > All changes requested above have been made, including avoiding the > > shadowing (in new patch 0003). > > > > I've completed my testing to my satisfaction with no additional changes > > except those that Jan

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Jan Zeleny
Stephen Gallagher wrote: > On Fri, 2012-06-15 at 11:25 -0400, Stephen Gallagher wrote: > > On Fri, 2012-06-15 at 17:16 +0200, Jan Zelený wrote: > > > > We only support the DIR cache on Kerberos 1.10 and higher. We need to > > > > make sure we still build and run on older systems. > > > > > > > >

[SSSD] [PATCH] - SIGUSR2 should force SSSD to reread resolv.conf as well

2012-06-15 Thread Ariel Barria
https://fedorahosted.org/sssd/ticket/1045 0001-SIGUSR2-should-force-SSSD-to-reread-resolv.conf-as-w.patch Description: Binary data ___ sssd-devel mailing list sssd-devel@lists.fedorahosted.org https://fedorahos

Re: [SSSD] [PATCH]-Bad debug message when adding services without explicit dns_discovery_domain

2012-06-15 Thread Ariel Barria
sorry, I hadn't understood. thanks. -- Nack, still. You can't use server->srv_data->dns_domain here because it hasn't been populated yet if dns_discovery_domain wasn't used. So this is going to be NULL and will just print "(null)" on glibc systems or crash on non-gli

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Stephen Gallagher
On Fri, 2012-06-15 at 11:25 -0400, Stephen Gallagher wrote: > On Fri, 2012-06-15 at 17:16 +0200, Jan Zelený wrote: > > > We only support the DIR cache on Kerberos 1.10 and higher. We need to > > > make sure we still build and run on older systems. > > > > > > Patch 0001: Minor fix for building on

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Stephen Gallagher
On Fri, 2012-06-15 at 17:16 +0200, Jan Zelený wrote: > > We only support the DIR cache on Kerberos 1.10 and higher. We need to > > make sure we still build and run on older systems. > > > > Patch 0001: Minor fix for building on little-endian RHEL 5 systems. > > (Building for ppc was broken) > > >

Re: [SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Jan Zelený
> We only support the DIR cache on Kerberos 1.10 and higher. We need to > make sure we still build and run on older systems. > > Patch 0001: Minor fix for building on little-endian RHEL 5 systems. > (Building for ppc was broken) > > Patch 0002: Conditionalize DIR cache Couple comments: I see fo

[SSSD] [PATCH] Conditionalize support for DIR cache in the Kerberos provider

2012-06-15 Thread Stephen Gallagher
We only support the DIR cache on Kerberos 1.10 and higher. We need to make sure we still build and run on older systems. Patch 0001: Minor fix for building on little-endian RHEL 5 systems. (Building for ppc was broken) Patch 0002: Conditionalize DIR cache From 1399dfb9035decfd943dcb222b4c6b138241

[SSSD] [PATCH] Fix possible segfault in sdap_save_group()

2012-06-15 Thread Jan Zelený
Discovered by Marko, no ticket filed Thanks Jan From fafb635e90b2d3bfcb22232ead51bdb393ecf84e Mon Sep 17 00:00:00 2001 From: Jan Zeleny Date: Fri, 15 Jun 2012 14:26:20 -0400 Subject: [PATCH] Fix possible segfault in sdap_save_group() --- src/providers/ldap/sdap_async_groups.c | 13 +++

[SSSD] [PATCH] Prevent file descriptor leak in client libs

2012-06-15 Thread Simo Sorce
It's a one-liner but I sitll would like an ack before pushing. Simo. -- Simo Sorce * Red Hat, Inc * New York >From 2756450b76969d3f1e647b3ae90350412e7499e0 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 15 Jun 2012 10:16:13 -0400 Subject: [PATCH] Do not leak file descriptors in client lib

[SSSD] [PATCH] SSS_CLIENT: Fix uninitialized value error

2012-06-15 Thread Stephen Gallagher
This would cause a crash if we jump to the done: label before it has been allocated. Pushed to master under the one-liner rule. This same issue was also addressed by Jan's patch "Provide service filter for SELinux context", but only in the 1.8.x branch by mistake. From 68559ed8f531be8fc057639cabcb

[SSSD] [PATCH] LDAP: Fix missing variable in debug message

2012-06-15 Thread Stephen Gallagher
Pushed to master under the one-liner rule. From 1e381a3c28eb8aaaed599ffbb6885832248297b8 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 15 Jun 2012 07:47:26 -0400 Subject: [PATCH] LDAP: Fix missing variable in debug message --- src/providers/ldap/ldap_child.c |2 +- 1 file chang

[SSSD] [PATCH] Fixed debug message in sdap_save_group()

2012-06-15 Thread Jan Zelený
Pushed to master under oneliner rule Jan From 5b8bbdac82152992c2c119ca9546a0d6d738bbaf Mon Sep 17 00:00:00 2001 From: Jan Zeleny Date: Fri, 15 Jun 2012 11:07:46 -0400 Subject: [PATCH] Fixed debug message in sdap_save_group() --- src/providers/ldap/sdap_async_groups.c |2 +- 1 files changed,