From d0eb246884d706da9651749179630cb16d6d0dc3 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Jun 11 2009 14:13:16 +0000 Subject: - add missing configure check that broke stopping the daemon - also fix default config to add a missing required option --- diff --git a/sssd-0.4.1-conf_check.patch b/sssd-0.4.1-conf_check.patch new file mode 100644 index 0000000..a25564e --- /dev/null +++ b/sssd-0.4.1-conf_check.patch @@ -0,0 +1,19 @@ +From da891b9cd5a17c65299f84db507181fd74a7a6bf Mon Sep 17 00:00:00 2001 +From: Stephen Gallagher +Date: Thu, 11 Jun 2009 08:46:43 -0400 +Subject: [PATCH] Add missing configure check for getpgrp + +--- + server/util/signal.m4 | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/server/util/signal.m4 b/server/util/signal.m4 +index c6d7f72..a778020 100644 +--- a/server/util/signal.m4 ++++ b/server/util/signal.m4 +@@ -1 +1 @@ +-AC_CHECK_FUNCS(sigprocmask sigblock sigaction) ++AC_CHECK_FUNCS(sigprocmask sigblock sigaction getpgrp) +-- +1.6.2.2 + diff --git a/sssd.conf.default b/sssd.conf.default index b9a421e..1eaed3d 100644 --- a/sssd.conf.default +++ b/sssd.conf.default @@ -62,6 +62,7 @@ description = Domains served by SSSD ; maxId = 999 ; legacy = FALSE ; magicPrivateGroups = TRUE +; provider = local # Example LDAP domain that uses the proxy backend and the standard nss_ldap # and pam_ldap modules (Useful until we have good working native ldap backends). diff --git a/sssd.spec b/sssd.spec index 8b68020..d1d5817 100644 --- a/sssd.spec +++ b/sssd.spec @@ -1,6 +1,6 @@ Name: sssd Version: 0.4.1 -Release: 0%{?dist} +Release: 1%{?dist} Group: Applications/System Summary: System Security Services Daemon @@ -13,6 +13,7 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) ### Patches ### Patch010: sssd-0.4.1-debug_fn.patch +Patch011: sssd-0.4.1-conf_check.patch ### Dependencies ### @@ -56,6 +57,7 @@ services for projects like FreeIPA. %setup -q %patch010 -p1 -b .debug_fn +%patch011 -p1 -b .conf_check %build %configure \ @@ -129,6 +131,10 @@ if [ $1 -ge 1 ] ; then fi %changelog +* Thu Jun 11 2009 Simo Sorce - 0.4.1-1 +- add missing configure check that broke stopping the daemon +- also fix default config to add a missing required option + * Mon Jun 8 2009 Simo Sorce - 0.4.1-0 - latest upstream release. - also add a patch that fixes debugging output (potential segfault)