sinnykumari / rpms / sssd

Forked from rpms/sssd 5 years ago
Clone
026e8e0
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
026e8e0
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
026e8e0
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
026e8e0
%endif
7a716e3
75138e2
# we don't want to provide private python extension libs
8c71823
%define __provides_exclude_from %{python_sitearch}/.*\.so$
75138e2
04d8c96
%if (0%{?fedora} > 15)
04d8c96
%define _hardened_build 1
04d8c96
%endif
04d8c96
3eed4c3
# Determine the location of the LDB modules directory
3eed4c3
%global ldb_modulesdir %(pkg-config --variable=modulesdir ldb)
930a3f3
%global ldb_version 1.1.15
3eed4c3
abb369a
Name: sssd
19d0660
Version: 1.10.0
eda3644
Release: 4%{?dist}.beta1
abb369a
Group: Applications/System
abb369a
Summary: System Security Services Daemon
94dadd2
License: GPLv3+
026e8e0
URL: http://fedorahosted.org/sssd/
c9aa541
Source0: https://fedorahosted.org/released/sssd/%{name}-%{version}beta1.tar.gz
abb369a
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
abb369a
abb369a
### Patches ###
eda3644
Patch0001: 0001-AD-read-flat-name-and-SID-of-the-AD-domain.patch
eda3644
Patch0002: 0002-Actually-use-the-index-parameter-in-resolv_get_socka.patch
eda3644
Patch0003: 0003-UTIL-Add-function-sss_names_init_from_args.patch
eda3644
Patch0004: 0004-SSH-Fix-parsing-of-names-from-client-requests.patch
eda3644
Patch0005: 0005-SSH-Use-separate-field-for-domain-name-in-client-req.patch
eda3644
Patch0006: 0006-SSH-Do-not-skip-domains-with-use_fully_qualified_nam.patch
eda3644
5be1b0d
Patch0501:  0501-FEDORA-Switch-the-default-ccache-location.patch
7a12c89
abb369a
### Dependencies ###
abb369a
9a79ed0
Conflicts: selinux-policy < 3.10.0-46
2cb2520
Requires: libldb%{?_isa} = %{ldb_version}
2cb2520
Requires: libtdb%{?_isa} >= 1.1.3
ae664cc
Requires: sssd-client%{?_isa} = %{version}-%{release}
8814799
Requires: cyrus-sasl-gssapi%{?_isa}
8814799
Requires: libipa_hbac%{?_isa} = %{version}-%{release}
7fa00ad
Requires: libsss_idmap%{?_isa} = %{version}-%{release}
c9aa541
Requires: python-sssdconfig = %{version}-%{release}
2cb2520
Requires: krb5-libs%{?_isa} >= 1.10
eda3644
Requires: libini_config >= 1.0.0.1
292c0dc
Requires(post): systemd-units initscripts chkconfig
7dcee20
Requires(preun): systemd-units initscripts chkconfig
292c0dc
Requires(postun): systemd-units initscripts chkconfig
abb369a
d41b28e
%global servicename sssd
d41b28e
%global sssdstatedir %{_localstatedir}/lib/sss
d41b28e
%global dbpath %{sssdstatedir}/db
d41b28e
%global pipepath %{sssdstatedir}/pipes
827279f
%global mcpath %{sssdstatedir}/mc
d41b28e
%global pubconfpath %{sssdstatedir}/pubconf
abb369a
abb369a
### Build Dependencies ###
abb369a
abb369a
BuildRequires: autoconf
298ea67
BuildRequires: automake
298ea67
BuildRequires: libtool
298ea67
BuildRequires: m4
7a716e3
%{?fedora:BuildRequires: popt-devel}
336aac3
%if 0%{?rhel} <= 5
336aac3
BuildRequires: popt
336aac3
%endif
336aac3
%if 0%{?rhel} >= 6
336aac3
BuildRequires: popt-devel
336aac3
%endif
abb369a
BuildRequires: libtalloc-devel
026e8e0
BuildRequires: libtevent-devel
abb369a
BuildRequires: libtdb-devel
3eed4c3
BuildRequires: libldb-devel = %{ldb_version}
9b0ef1c
BuildRequires: libdhash-devel >= 0.4.2
9b0ef1c
BuildRequires: libcollection-devel
eda3644
BuildRequires: libini_config-devel >= 1.0.0.1
abb369a
BuildRequires: dbus-devel
abb369a
BuildRequires: dbus-libs
abb369a
BuildRequires: openldap-devel
abb369a
BuildRequires: pam-devel
abb369a
BuildRequires: nss-devel
abb369a
BuildRequires: nspr-devel
740369e
BuildRequires: pcre-devel
298ea67
BuildRequires: libxslt
298ea67
BuildRequires: libxml2
298ea67
BuildRequires: docbook-style-xsl
666a392
BuildRequires: krb5-devel >= 1.10
8b935a1
BuildRequires: c-ares-devel
7a716e3
BuildRequires: python-devel
026e8e0
BuildRequires: check-devel
026e8e0
BuildRequires: doxygen
6a6c9eb
BuildRequires: libselinux-devel
6a6c9eb
BuildRequires: libsemanage-devel
6a6c9eb
BuildRequires: bind-utils
9b0ef1c
BuildRequires: keyutils-libs-devel
bd215c4
BuildRequires: libnl-devel
d12cd5d
BuildRequires: gettext-devel
8814799
BuildRequires: pkgconfig
2cb2520
BuildRequires: glib2-devel
3a1ca05
BuildRequires: diffstat
75138e2
BuildRequires: findutils
058cfb8
BuildRequires: samba4-devel >= samba4-4.0.0-59beta2
827279f
BuildRequires: selinux-policy-targeted
abb369a
abb369a
%description
abb369a
Provides a set of daemons to manage access to remote directories and
abb369a
authentication mechanisms. It provides an NSS and PAM interface toward
abb369a
the system and a pluggable backend system to connect to multiple different
abb369a
account sources. It is also the basis to provide client auditing and policy
abb369a
services for projects like FreeIPA.
abb369a
7a716e3
%package client
7a716e3
Summary: SSSD Client libraries for NSS and PAM
7a716e3
Group: Applications/System
94dadd2
License: LGPLv3+
292c0dc
Requires(post): /sbin/ldconfig
292c0dc
Requires(postun): /sbin/ldconfig
7a716e3
7a716e3
%description client
7a716e3
Provides the libraries needed by the PAM and NSS stacks to connect to the SSSD
7a716e3
service.
7a716e3
5225c32
%package tools
5225c32
Summary: Userspace tools for use with the SSSD
5225c32
Group: Applications/System
5225c32
License: GPLv3+
5225c32
Requires: sssd = %{version}-%{release}
5225c32
5225c32
%description tools
5225c32
Provides userspace tools for manipulating users, groups, and nested groups in
5225c32
SSSD when using id_provider = local in /etc/sssd/sssd.conf.
5225c32
89ce7cb
Also provides several other administrative tools:
89ce7cb
    * sss_debuglevel to change the debug level on the fly
89ce7cb
    * sss_seed which pre-creates a user entry for use in kickstarts
89ce7cb
    * sss_obfuscate for generating an obfuscated LDAP password
5225c32
c9aa541
%package -n python-sssdconfig
c9aa541
Summary: SSSD and IPA configuration file manipulation classes and functions
c9aa541
Group: Applications/System
c9aa541
License: GPLv3+
c9aa541
BuildArch: noarch
c9aa541
c9aa541
%description -n python-sssdconfig
c9aa541
Provides python files for manipulation SSSD and IPA configuration files.
c9aa541
7fa00ad
%package -n libsss_idmap
7fa00ad
Summary: FreeIPA Idmap library
7fa00ad
Group: Development/Libraries
7fa00ad
License: LGPLv3+
292c0dc
Requires(post): /sbin/ldconfig
292c0dc
Requires(postun): /sbin/ldconfig
7fa00ad
7fa00ad
%description -n libsss_idmap
89ce7cb
Utility library to convert SIDs to Unix uids and gids
7fa00ad
7fa00ad
%package -n libsss_idmap-devel
7fa00ad
Summary: FreeIPA Idmap library
7fa00ad
Group: Development/Libraries
7fa00ad
License: LGPLv3+
7fa00ad
Requires: libsss_idmap = %{version}-%{release}
7fa00ad
7fa00ad
%description -n libsss_idmap-devel
7fa00ad
Utility library to SIDs to Unix uids and gids
7fa00ad
679b5f7
%package -n libipa_hbac
679b5f7
Summary: FreeIPA HBAC Evaluator library
679b5f7
Group: Development/Libraries
679b5f7
License: LGPLv3+
292c0dc
Requires(post): /sbin/ldconfig
292c0dc
Requires(postun): /sbin/ldconfig
679b5f7
679b5f7
%description -n libipa_hbac
679b5f7
Utility library to validate FreeIPA HBAC rules for authorization requests
679b5f7
679b5f7
%package -n libipa_hbac-devel
679b5f7
Summary: FreeIPA HBAC Evaluator library
679b5f7
Group: Development/Libraries
679b5f7
License: LGPLv3+
679b5f7
Requires: libipa_hbac = %{version}-%{release}
679b5f7
679b5f7
%description -n libipa_hbac-devel
679b5f7
Utility library to validate FreeIPA HBAC rules for authorization requests
679b5f7
679b5f7
%package -n libipa_hbac-python
679b5f7
Summary: Python bindings for the FreeIPA HBAC Evaluator library
679b5f7
Group: Development/Libraries
679b5f7
License: LGPLv3+
679b5f7
Requires: libipa_hbac = %{version}-%{release}
679b5f7
679b5f7
%description -n libipa_hbac-python
679b5f7
The libipa_hbac-python contains the bindings so that libipa_hbac can be
679b5f7
used by Python applications.
679b5f7
c9aa541
%package -n libsss_nss_idmap
c9aa541
Summary: Library for SID based lookups
c9aa541
Group: Development/Libraries
c9aa541
License: LGPLv3+
c9aa541
Requires(post): /sbin/ldconfig
c9aa541
Requires(postun): /sbin/ldconfig
c9aa541
c9aa541
%description -n libsss_nss_idmap
c9aa541
Utility library for SID based lookups
c9aa541
c9aa541
%package -n libsss_nss_idmap-devel
c9aa541
Summary: Library for SID based lookups
c9aa541
Group: Development/Libraries
c9aa541
License: LGPLv3+
c9aa541
Requires: libsss_nss_idmap = %{version}-%{release}
c9aa541
c9aa541
%description -n libsss_nss_idmap-devel
c9aa541
Utility library for SID based lookups
c9aa541
c9aa541
%package -n libsss_nss_idmap-python
c9aa541
Summary: Python bindings for libsss_nss_idmap
c9aa541
Group: Development/Libraries
c9aa541
License: LGPLv3+
c9aa541
Requires: libsss_nss_idmap = %{version}-%{release}
c9aa541
c9aa541
%description -n libsss_nss_idmap-python
c9aa541
The libsss_nss_idmap-python contains the bindings so that libsss_nss_idmap can
c9aa541
be used by Python applications.
c9aa541
8814799
%package -n libsss_sudo
8814799
Summary: A library to allow communication between SUDO and SSSD
8814799
Group: Development/Libraries
8814799
License: LGPLv3+
292c0dc
Requires(post): /sbin/ldconfig
292c0dc
Requires(postun): /sbin/ldconfig
64a7ceb
Requires: sssd = %{version}-%{release}
8814799
8814799
%description -n libsss_sudo
8814799
A utility library to allow communication between SUDO and SSSD
8814799
8814799
%package -n libsss_sudo-devel
8814799
Summary: A library to allow communication between SUDO and SSSD
8814799
Group: Development/Libraries
8814799
License: LGPLv3+
8814799
Requires: libsss_sudo = %{version}-%{release}
8814799
8814799
%description -n libsss_sudo-devel
8814799
A utility library to allow communication between SUDO and SSSD
679b5f7
abb369a
%prep
50d0fe5
# Update timestamps on the files touched by a patch, to avoid non-equal
50d0fe5
# .pyc/.pyo files across the multilib peers within a build, where "Level"
50d0fe5
# is the patch prefix option (e.g. -p1)
50d0fe5
# Taken from specfile for python-simplejson
50d0fe5
UpdateTimestamps() {
50d0fe5
  Level=$1
50d0fe5
  PatchFile=$2
50d0fe5
50d0fe5
  # Locate the affected files:
50d0fe5
  for f in $(diffstat $Level -l $PatchFile); do
50d0fe5
    # Set the files to have the same timestamp as that of the patch:
50d0fe5
    touch -r $PatchFile $f
50d0fe5
  done
50d0fe5
}
50d0fe5
c9aa541
%setup -q -n %{name}-1.9.92
19d0660
abb369a
50d0fe5
for p in %patches ; do
50d0fe5
    %__patch -p1 -i $p
50d0fe5
    UpdateTimestamps -p1 $p
50d0fe5
done
50d0fe5
abb369a
%build
e8ab291
autoreconf -ivf
298ea67
%configure \
8b935a1
    --with-db-path=%{dbpath} \
8b935a1
    --with-pipe-path=%{pipepath} \
ad368b8
    --with-pubconf-path=%{pubconfpath} \
1756cca
    --with-mcache-path=%{mcpath} \
298ea67
    --with-init-dir=%{_initrddir} \
75138e2
    --with-krb5-rcache-dir=%{_localstatedir}/cache/krb5rcache \
666a392
    --with-default-ccache-dir=/run/user/%U \
5be1b0d
    --with-default-ccname-template=DIR:%d/krb5cc \
026e8e0
    --enable-nsslibdir=/%{_lib} \
cfa7be9
    --enable-pammoddir=/%{_lib}/security \
026e8e0
    --disable-static \
9b0ef1c
    --disable-rpath \
827279f
    --with-test-dir=/dev/shm
276bbb1
75138e2
make %{?_smp_mflags} all docs
abb369a
026e8e0
%check
9b0ef1c
export CK_TIMEOUT_MULTIPLIER=10
026e8e0
make %{?_smp_mflags} check
9b0ef1c
unset CK_TIMEOUT_MULTIPLIER
026e8e0
abb369a
%install
abb369a
rm -rf $RPM_BUILD_ROOT
abb369a
abb369a
make install DESTDIR=$RPM_BUILD_ROOT
abb369a
d6e2c70
# Prepare language files
9b0ef1c
/usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT sssd
d6e2c70
8814799
# Prepare empty config file
d6e2c70
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/sssd
75138e2
touch $RPM_BUILD_ROOT/%{_sysconfdir}/sssd/sssd.conf
026e8e0
026e8e0
# Copy default logrotate file
026e8e0
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d
026e8e0
install -m644 src/examples/logrotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/sssd
d6e2c70
6a6c9eb
# Make sure SSSD is able to run on read-only root
6a6c9eb
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/rwtab.d
6a6c9eb
install -m644 src/examples/rwtab $RPM_BUILD_ROOT%{_sysconfdir}/rwtab.d/sssd
6a6c9eb
7dcee20
# Replace sysv init script with systemd unit file
7dcee20
rm -f $RPM_BUILD_ROOT/%{_initrddir}/%{name}
d895a5f
mkdir -p $RPM_BUILD_ROOT/%{_unitdir}/
d895a5f
cp src/sysv/systemd/sssd.service $RPM_BUILD_ROOT/%{_unitdir}/
7dcee20
298ea67
# Remove .la files created by libtool
75138e2
find $RPM_BUILD_ROOT -name "*.la" -exec rm -f {} \;
75138e2
75138e2
# Suppress developer-only documentation
7fa00ad
rm -Rf ${RPM_BUILD_ROOT}/%{_docdir}/%{name}
abb369a
9b0ef1c
# Older versions of rpmbuild can only handle one -f option
c9aa541
# So we need to append to the sssd*.lang file
336aac3
for file in `ls $RPM_BUILD_ROOT/%{python_sitelib}/*.egg-info 2> /dev/null`
336aac3
do
c9aa541
    echo %{python_sitelib}/`basename $file` >> python_sssdconfig.lang
336aac3
done
7a716e3
d12cd5d
touch sssd_tools.lang
827279f
touch sssd_client.lang
d12cd5d
for man in `find $RPM_BUILD_ROOT/%{_mandir}/??/man?/ -type f | sed -e "s#$RPM_BUILD_ROOT/%{_mandir}/##"`
d12cd5d
do
d12cd5d
    lang=`echo $man | cut -c 1-2`
d12cd5d
    case `basename $man` in
81d04d0
        sss_cache*)
81d04d0
            echo \%lang\(${lang}\) \%{_mandir}/${man}\* >> sssd.lang
81d04d0
            ;;
d12cd5d
        sss_*)
d12cd5d
            echo \%lang\(${lang}\) \%{_mandir}/${man}\* >> sssd_tools.lang
8814799
            ;;
827279f
        sssd_krb5_*)
827279f
            echo \%lang\(${lang}\) \%{_mandir}/${man}\* >> sssd_client.lang
827279f
            ;;
8c71823
        pam_sss*)
8c71823
            echo \%lang\(${lang}\) \%{_mandir}/${man}\* >> sssd_client.lang
8c71823
            ;;
8c71823
        sssd_krb5_locator_plugin*)
8c71823
            echo \%lang\(${lang}\) \%{_mandir}/${man}\* >> sssd_client.lang
8c71823
            ;;
d12cd5d
        *)
d12cd5d
            echo \%lang\(${lang}\) \%{_mandir}/${man}\* >> sssd.lang
d12cd5d
            ;;
d12cd5d
    esac
d12cd5d
done
d12cd5d
8c71823
# Print these to the rpmbuild log
8c71823
echo "sssd.lang:"
8c71823
cat sssd.lang
8c71823
8c71823
echo "sssd_client.lang:"
8c71823
cat sssd_client.lang
8c71823
8c71823
echo "sssd_tools.lang:"
8c71823
cat sssd_tools.lang
8c71823
8c71823
abb369a
%clean
abb369a
rm -rf $RPM_BUILD_ROOT
abb369a
9b0ef1c
%files -f sssd.lang
abb369a
%defattr(-,root,root,-)
abb369a
%doc COPYING
a885ab8
%doc src/examples/sssd-example.conf
d895a5f
%{_unitdir}/sssd.service
abb369a
%{_sbindir}/sssd
d023298
f681bd4
%dir %{_libexecdir}/%{servicename}
d023298
%{_libexecdir}/%{servicename}/krb5_child
d023298
%{_libexecdir}/%{servicename}/ldap_child
d023298
%{_libexecdir}/%{servicename}/proxy_child
d023298
%{_libexecdir}/%{servicename}/sssd_be
d023298
%{_libexecdir}/%{servicename}/sssd_nss
d023298
%{_libexecdir}/%{servicename}/sssd_pam
d023298
%{_libexecdir}/%{servicename}/sssd_autofs
d023298
%{_libexecdir}/%{servicename}/sssd_ssh
d023298
%{_libexecdir}/%{servicename}/sssd_sudo
058cfb8
%{_libexecdir}/%{servicename}/sssd_pac
d023298
f681bd4
%dir %{_libdir}/%{name}
d023298
%{_libdir}/%{name}/libsss_ipa.so
d023298
%{_libdir}/%{name}/libsss_krb5.so
d023298
%{_libdir}/%{name}/libsss_ldap.so
d023298
%{_libdir}/%{name}/libsss_proxy.so
d023298
%{_libdir}/%{name}/libsss_simple.so
32842a8
%{_libdir}/%{name}/libsss_ad.so
d023298
c067286
#Internal shared libraries
c067286
%{_libdir}/%{name}/libsss_child.so
c067286
%{_libdir}/%{name}/libsss_crypt.so
c067286
%{_libdir}/%{name}/libsss_debug.so
c067286
%{_libdir}/%{name}/libsss_krb5_common.so
c067286
%{_libdir}/%{name}/libsss_ldap_common.so
c067286
%{_libdir}/%{name}/libsss_util.so
c067286
3eed4c3
%{ldb_modulesdir}/memberof.so
e16d49f
%{_bindir}/sss_ssh_authorizedkeys
e16d49f
%{_bindir}/sss_ssh_knownhostsproxy
81d04d0
%{_sbindir}/sss_cache
d023298
8b935a1
%dir %{sssdstatedir}
75138e2
%dir %{_localstatedir}/cache/krb5rcache
8b935a1
%attr(700,root,root) %dir %{dbpath}
827279f
%attr(755,root,root) %dir %{mcpath}
827279f
%ghost %attr(0644,root,root) %verify(not md5 size mtime) %{mcpath}/passwd
827279f
%ghost %attr(0644,root,root) %verify(not md5 size mtime) %{mcpath}/group
8b935a1
%attr(755,root,root) %dir %{pipepath}
ad368b8
%attr(755,root,root) %dir %{pubconfpath}
827279f
%attr(755,root,root) %dir %{pubconfpath}/krb5.include.d
8b935a1
%attr(700,root,root) %dir %{pipepath}/private
7a716e3
%attr(750,root,root) %dir %{_var}/log/%{name}
a0cdb7e
%attr(700,root,root) %dir %{_sysconfdir}/sssd
75138e2
%ghost %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/sssd/sssd.conf
026e8e0
%config(noreplace) %{_sysconfdir}/logrotate.d/sssd
6a6c9eb
%config(noreplace) %{_sysconfdir}/rwtab.d/sssd
f681bd4
%dir %{_datadir}/sssd
8814799
%{_datadir}/sssd/sssd.api.conf
8814799
%{_datadir}/sssd/sssd.api.d
e16d49f
%{_mandir}/man1/sss_ssh_authorizedkeys.1*
e16d49f
%{_mandir}/man1/sss_ssh_knownhostsproxy.1*
7a716e3
%{_mandir}/man5/sssd.conf.5*
d6e2c70
%{_mandir}/man5/sssd-ipa.5*
7a716e3
%{_mandir}/man5/sssd-krb5.5*
7a716e3
%{_mandir}/man5/sssd-ldap.5*
026e8e0
%{_mandir}/man5/sssd-simple.5*
32842a8
%{_mandir}/man5/sssd-ad.5*
292c0dc
%{_mandir}/man5/sssd-sudo.5*
7a716e3
%{_mandir}/man8/sssd.8*
81d04d0
%{_mandir}/man8/sss_cache.8*
81d04d0
7a716e3
%{python_sitearch}/pysss.so
64a7ceb
%{python_sitearch}/pysss_murmur.so
7a716e3
8c71823
%files client -f sssd_client.lang
fba27f0
%defattr(-,root,root,-)
026e8e0
%doc src/sss_client/COPYING src/sss_client/COPYING.LESSER
7a716e3
/%{_lib}/libnss_sss.so.2
7a716e3
/%{_lib}/security/pam_sss.so
cfa7be9
%{_libdir}/krb5/plugins/libkrb5/sssd_krb5_locator_plugin.so
058cfb8
%{_libdir}/krb5/plugins/authdata/sssd_pac_plugin.so
7a716e3
%{_mandir}/man8/pam_sss.8*
9b0ef1c
%{_mandir}/man8/sssd_krb5_locator_plugin.8*
026e8e0
8814799
%files tools -f sssd_tools.lang
5225c32
%defattr(-,root,root,-)
5225c32
%doc COPYING
5225c32
%{_sbindir}/sss_useradd
5225c32
%{_sbindir}/sss_userdel
5225c32
%{_sbindir}/sss_usermod
5225c32
%{_sbindir}/sss_groupadd
5225c32
%{_sbindir}/sss_groupdel
5225c32
%{_sbindir}/sss_groupmod
5225c32
%{_sbindir}/sss_groupshow
5225c32
%{_sbindir}/sss_obfuscate
a885ab8
%{_sbindir}/sss_debuglevel
292c0dc
%{_sbindir}/sss_seed
5225c32
%{_mandir}/man8/sss_groupadd.8*
5225c32
%{_mandir}/man8/sss_groupdel.8*
5225c32
%{_mandir}/man8/sss_groupmod.8*
5225c32
%{_mandir}/man8/sss_groupshow.8*
5225c32
%{_mandir}/man8/sss_useradd.8*
5225c32
%{_mandir}/man8/sss_userdel.8*
5225c32
%{_mandir}/man8/sss_usermod.8*
5225c32
%{_mandir}/man8/sss_obfuscate.8*
a885ab8
%{_mandir}/man8/sss_debuglevel.8*
292c0dc
%{_mandir}/man8/sss_seed.8*
679b5f7
c9aa541
%files -n python-sssdconfig -f python_sssdconfig.lang
c9aa541
%defattr(-,root,root,-)
c9aa541
%dir %{python_sitelib}/SSSDConfig
c9aa541
%{python_sitelib}/SSSDConfig/*.py*
c9aa541
7fa00ad
%files -n libsss_idmap
7fa00ad
%defattr(-,root,root,-)
7fa00ad
%doc src/sss_client/COPYING src/sss_client/COPYING.LESSER
7fa00ad
%{_libdir}/libsss_idmap.so.*
7fa00ad
7fa00ad
%files -n libsss_idmap-devel
7fa00ad
%defattr(-,root,root,-)
7fa00ad
%doc idmap_doc/html
7fa00ad
%{_includedir}/sss_idmap.h
7fa00ad
%{_libdir}/libsss_idmap.so
7fa00ad
%{_libdir}/pkgconfig/sss_idmap.pc
7fa00ad
679b5f7
%files -n libipa_hbac
679b5f7
%defattr(-,root,root,-)
679b5f7
%doc src/sss_client/COPYING src/sss_client/COPYING.LESSER
679b5f7
%{_libdir}/libipa_hbac.so.*
679b5f7
679b5f7
%files -n libipa_hbac-devel
679b5f7
%defattr(-,root,root,-)
75138e2
%doc hbac_doc/html
679b5f7
%{_includedir}/ipa_hbac.h
679b5f7
%{_libdir}/libipa_hbac.so
679b5f7
%{_libdir}/pkgconfig/ipa_hbac.pc
679b5f7
679b5f7
%files -n libipa_hbac-python
679b5f7
%defattr(-,root,root,-)
679b5f7
%{python_sitearch}/pyhbac.so
5225c32
8814799
%package -n libsss_autofs
8814799
Summary: A library to allow communication between Autofs and SSSD
8814799
Group: Development/Libraries
8814799
License: LGPLv3+
8814799
8814799
%description -n libsss_autofs
8814799
A utility library to allow communication between Autofs and SSSD
8814799
8814799
%files -n libsss_sudo
8814799
%defattr(-,root,root,-)
8814799
%doc src/sss_client/COPYING src/sss_client/COPYING.LESSER
89ce7cb
%{_libdir}/libsss_sudo.so*
8814799
8814799
%files -n libsss_sudo-devel
8814799
%doc libsss_sudo_doc/html
8814799
%{_includedir}/sss_sudo.h
8814799
8814799
%files -n libsss_autofs
8814799
%defattr(-,root,root,-)
8814799
%doc src/sss_client/COPYING src/sss_client/COPYING.LESSER
8814799
%{_libdir}/sssd/modules/libsss_autofs.so*
8814799
c9aa541
%files -n libsss_nss_idmap
c9aa541
%defattr(-,root,root,-)
c9aa541
%doc src/sss_client/COPYING src/sss_client/COPYING.LESSER
c9aa541
%{_libdir}/libsss_nss_idmap.so.*
c9aa541
c9aa541
%files -n libsss_nss_idmap-devel
c9aa541
%defattr(-,root,root,-)
c9aa541
%if 0%{?fedora}
c9aa541
%doc nss_idmap_doc/html
c9aa541
%endif
c9aa541
%if 0%{?rhel} >= 6
c9aa541
%doc nss_idmap_doc/html
c9aa541
%endif
c9aa541
%{_includedir}/sss_nss_idmap.h
c9aa541
%{_libdir}/libsss_nss_idmap.so
c9aa541
%{_libdir}/pkgconfig/sss_nss_idmap.pc
c9aa541
c9aa541
%files -n libsss_nss_idmap-python
c9aa541
%defattr(-,root,root,-)
c9aa541
%{python_sitearch}/pysss_nss_idmap.so
c9aa541
abb369a
%post
bd215c4
if [ $1 -ge 1 ] ; then
d895a5f
    # Initial installation
d895a5f
    /bin/systemctl daemon-reload >/dev/null 2>&1 || :
bd215c4
fi
bd215c4
abb369a
%preun
36b8b7a
if [ $1 -eq 0 ]; then
d895a5f
     # Package removal, not upgrade
d895a5f
    /bin/systemctl --no-reload disable sssd.service > /dev/null 2>&1 || :
d895a5f
    /bin/systemctl stop sssd.service > /dev/null 2>&1 || :
d895a5f
fi
d895a5f
5796dc7
%triggerun -- sssd < %{version}-%{release}
d9b22a7
if /sbin/chkconfig --level 3 sssd ; then
d9b22a7
        /bin/systemctl --no-reload enable sssd.service >/dev/null 2>&1 || :
d9b22a7
fi
d9b22a7
d9b22a7
if /sbin/chkconfig --level 5 sssd ; then
d895a5f
        /bin/systemctl --no-reload enable sssd.service >/dev/null 2>&1 || :
abb369a
fi
abb369a
5796dc7
/sbin/chkconfig --del sssd >/dev/null 2>&1 || :
5796dc7
d9b22a7
d9b22a7
d7effc6
%postun
d895a5f
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
d895a5f
if [ $1 -ge 1 ] ; then
d895a5f
    /bin/systemctl try-restart sssd.service >/dev/null 2>&1 || :
d895a5f
fi
d6e2c70
d7effc6
%post client -p /sbin/ldconfig
d7effc6
d7effc6
%postun client -p /sbin/ldconfig
d7effc6
679b5f7
%post -n libipa_hbac -p /sbin/ldconfig
679b5f7
679b5f7
%postun -n libipa_hbac -p /sbin/ldconfig
679b5f7
292c0dc
%post -n libsss_idmap -p /sbin/ldconfig
292c0dc
292c0dc
%postun -n libsss_idmap -p /sbin/ldconfig
292c0dc
292c0dc
%post -n libsss_sudo -p /sbin/ldconfig
292c0dc
292c0dc
%postun -n libsss_sudo -p /sbin/ldconfig
292c0dc
abb369a
%changelog
eda3644
* Tue May  7 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.10.0-4.beta1
eda3644
- Explicitly Require libini_config >= 1.0.0.1 to work around a SONAME bug
eda3644
  in ding-libs
eda3644
- Fix SSH integration with fully-qualified domains
eda3644
- Add the ability to dynamically discover the NetBIOS name
eda3644
c9aa541
* Fri May  3 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.10.0-3.beta1
c9aa541
- New upstream release 1.10 beta1
c9aa541
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.10.0beta1
c9aa541
624a180
* Wed Apr 17 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.10.0-2.alpha1
624a180
- Add a patch to fix krb5 ccache creation issue with krb5 1.11
624a180
19d0660
* Tue Apr  2 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.10.0-1.alpha1
19d0660
- New upstream release 1.10 alpha1
19d0660
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.10.0alpha1
19d0660
19d0660
* Fri Mar 01 2013 Stephen Gallagher <sgallagh@redhat.com> - 1.9.4-9
c067286
- Split internal helper libraries into a shared object
c067286
- Significantly reduce disk-space usage
c067286
21a05ac
* Thu Feb 14 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-8
21a05ac
- Fix the Kerberos password expiration warning (#912223)
21a05ac
c7ed4e1
* Thu Feb 14 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-7
c7ed4e1
- Do not write out dots in the domain-realm mapping file (#905650)
c7ed4e1
15e195c
* Mon Feb 11 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-6
15e195c
- Include upstream patch to build with krb5-1.11
15e195c
930a3f3
* Thu Feb 07 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-5
930a3f3
- Rebuild against new libldb
930a3f3
9507d12
* Mon Feb 04 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-4
9507d12
- Fix build with new automake versions
9507d12
2da8f67
* Wed Jan 30 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-3
2da8f67
- Recreate Kerberos ccache directory if it's missing
2da8f67
- Resolves: rhbz#853558 - [sssd[krb5_child[PID]]]: Credential cache
2da8f67
                          directory /run/user/UID/ccdir does not exist
2da8f67
e4c185b
* Tue Jan 29 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-2
e4c185b
- Fix changelog dates to make F19 rpmbuild happy
e4c185b
ad9c695
* Mon Jan 28 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.4-1
ad9c695
- New upstream release 1.9.4
ad9c695
36b8b7a
* Thu Dec 06 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.3-1
36b8b7a
- New upstream release 1.9.3
36b8b7a
a2ee98d
* Tue Oct 30 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.2-5
a2ee98d
- Resolve groups from AD correctly
a2ee98d
fdd9aa5
* Tue Oct 30 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.2-4
fdd9aa5
- Check the validity of naming context
fdd9aa5
81d04d0
* Thu Oct 18 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.2-3
81d04d0
- Move the sss_cache tool to the main package
81d04d0
8642909
* Sun Oct 14 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.2-2
8642909
- Include the 1.9.2 tarball
8642909
89ce7cb
* Sun Oct 14 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.2-1
89ce7cb
- New upstream release 1.9.2
89ce7cb
a48646c
* Sun Oct 07 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.1-1
a48646c
- New upstream release 1.9.1
a48646c
a48646c
* Wed Oct 03 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-24
fbc5fa9
- require the latest libldb
fbc5fa9
1756cca
* Tue Sep 25 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-24
1756cca
- Use mcpath insted of mcachepath macro to be consistent with
1756cca
  upsteam spec file
1756cca
827279f
* Tue Sep 25 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-23
1756cca
- New upstream release 1.9.0
827279f
6cde68d
* Fri Sep 14 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-22.rc1
6cde68d
- New upstream release 1.9.0 rc1
6cde68d
64a7ceb
* Thu Sep 06 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-21.beta7
64a7ceb
- New upstream release 1.9.0 beta7
586ea1b
- obsoletes patches #1-#3
64a7ceb
26c9bc8
* Mon Sep 03 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-20.beta6
26c9bc8
- Rebuild against libldb 1.12
26c9bc8
b19546a
* Tue Aug 28 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-19.beta6
b19546a
- Rebuild against libldb 1.11
b19546a
5be1b0d
* Fri Aug 24 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-18.beta6
5be1b0d
- Change the default ccache location to DIR:/run/user/${UID}/krb5cc
5be1b0d
  and patch man page accordingly
5be1b0d
- Resolves: rhbz#851304
5be1b0d
a35b292
* Mon Aug 20 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-17.beta6
a35b292
- Rebuild against libldb 1.10
a35b292
66374ad
* Fri Aug 17 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-16.beta6
66374ad
- Only create the SELinux login file if there are SELinux mappings on
66374ad
  the IPA server
66374ad
a165740
* Fri Aug 10 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-14.beta6
a165740
- Don't discard HBAC rule processing result if SELinux is on
a165740
  Resolves: rhbz#846792 (CVE-2012-3462)
a165740
292c0dc
* Thu Aug 02 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-13.beta6
292c0dc
- New upstream release 1.9.0 beta 6
292c0dc
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta6
292c0dc
- A new option, override_shell was added. If this option is set, all users
292c0dc
  managed by SSSD will have their shell set to its value.
292c0dc
- Fixes for the support for setting default SELinux user context from FreeIPA.
292c0dc
- Fixed a regression introduced in beta 5 that broke LDAP SASL binds
292c0dc
- The SSSD supports the concept of a Primary Server and a Back Up Server in
292c0dc
  failover
292c0dc
- A new command-line tool sss_seed is available to help prime the cache with
292c0dc
  a user record when deploying a new machine
292c0dc
- SSSD is now able to discover and save the domain-realm mappings
292c0dc
  between an IPA server and a trusted Active Directory server.
292c0dc
- Packaging changes to fix ldconfig usage in subpackages (#843995)
292c0dc
- Rebuild against libldb 1.1.9
292c0dc
61dbc61
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-13.beta5
61dbc61
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
61dbc61
b75ed0d
* Thu Jul 19 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-12.beta5
b75ed0d
- New upstream release 1.9.0 beta 5
b75ed0d
- Obsoletes the patch for missing DP_OPTION_TERMINATOR in AD provider options
b75ed0d
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta5
b75ed0d
- Many fixes for the support for setting default SELinux user context from
b75ed0d
  FreeIPA, most notably fixed the specificity evaluation
b75ed0d
- Fixed an incorrect default in the krb5_canonicalize option of the AD
b75ed0d
  provider which was preventing password change operation
b75ed0d
- The shadowLastChange attribute value is now correctly updated with the
b75ed0d
  number of days since the Epoch, not seconds
b75ed0d
e4c185b
* Mon Jul 16 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-11.beta4
7a12c89
- Fix broken ARM build
7a12c89
- Add missing DP_OPTION_TERMINATOR in AD provider options
7a12c89
f681bd4
* Wed Jul 11 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-10.beta4
f681bd4
- Own several directories create during make install (#839782)
f681bd4
32842a8
* Wed Jul 11 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-9.beta4
32842a8
- New upstream release 1.9.0 beta 4
32842a8
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta4
32842a8
- Add a new AD provider to improve integration with Active Directory 2008 R2
32842a8
  or later servers
32842a8
- SUDO integration was completely rewritten. The new implementation works
32842a8
  with multiple domains and uses an improved refresh mechanism to download
32842a8
  only the necessary rules
32842a8
- The IPA authentication provider now supports subdomains
32842a8
- Fixed regression for setups that were setting default_tkt_enctypes
32842a8
  manually by reverting a previous workaround.
32842a8
058cfb8
* Mon Jun 25 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-8.beta3
058cfb8
- New upstream release 1.9.0 beta 3
058cfb8
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta3
058cfb8
- Add a new PAC responder for dealing with cross-realm Kerberos trusts
058cfb8
- Terminate idle connections to the NSS and PAM responders
058cfb8
2cb2520
* Wed Jun 20 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-7.beta2
2cb2520
- Switch unicode library from libunistring to Glib
2cb2520
- Drop unnecessary explicit Requires on keyutils
2cb2520
- Guarantee that versioned Requires include the correct architecture
2cb2520
f8c8804
* Mon Jun 18 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-6.beta2
f8c8804
- Fix accidental disabling of the DIR cache support
f8c8804
666a392
* Fri Jun 15 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-5.beta2
666a392
- New upstream release 1.9.0 beta 2
666a392
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta2
666a392
- Add support for the Kerberos DIR cache for storing multiple TGTs
666a392
  automatically
666a392
- Major performance enhancement when storing large groups in the cache
666a392
- Major performance enhancement when performing initgroups() against Active
666a392
  Directory
666a392
- SSSDConfig data file default locations can now be set during configure for
666a392
  easier packaging
666a392
26151da
* Tue May 29 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-4.beta1
26151da
- Fix regression in endianness patch
26151da
12d78e1
* Tue May 29 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-3.beta1
12d78e1
- Rebuild SSSD against ding-libs 0.3.0beta1
12d78e1
- Fix endianness bug in service map protocol
12d78e1
359d341
* Thu May 24 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-2.beta1
359d341
- Fix several regressions since 1.5.x
359d341
- Ensure that the RPM creates the /var/lib/sss/mc directory
359d341
- Add support for Netscape password warning expiration control
359d341
- Rebuild against libldb 1.1.6
359d341
7fa00ad
* Fri May 11 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-1.beta1
7fa00ad
- New upstream release 1.9.0 beta 1
7fa00ad
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta1
7fa00ad
- Add native support for autofs to the IPA provider
7fa00ad
- Support for ID-mapping when connecting to Active Directory
7fa00ad
- Support for handling very large (> 1500 users) groups in Active Directory
7fa00ad
- Support for sub-domains (will be used for dealing with trust relationships)
7fa00ad
- Add a new fast in-memory cache to speed up lookups of cached data on
7fa00ad
  repeated requests
7fa00ad
05471b8
* Thu May 03 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.3-11
05471b8
- New upstream release 1.8.3
05471b8
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.8.3
05471b8
- Numerous manpage and translation updates
05471b8
- LDAP: Handle situations where the RootDSE isn't available anonymously
05471b8
- LDAP: Fix regression for users using non-standard LDAP attributes for user
05471b8
  information
05471b8
77acf29
* Mon Apr 09 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.2-10
77acf29
- New upstream release 1.8.2
77acf29
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.8.2
77acf29
- Several fixes to case-insensitive domain functions
77acf29
- Fix for GSSAPI binds when the keytab contains unrelated principals
77acf29
- Fixed several segfaults
77acf29
- Workarounds added for LDAP servers with unreadable RootDSE
77acf29
- SSH knownhostproxy will no longer enter an infinite loop preventing login
77acf29
- The provided SYSV init script now starts SSSD earlier at startup and stops
77acf29
  it later during shutdown
77acf29
- Assorted minor fixes for issues discovered by static analysis tools
77acf29
d023298
* Mon Mar 26 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.1-9
d023298
- Don't duplicate libsss_autofs.so in two packages
d023298
- Set explicit package contents instead of globbing
d023298
af80d0e
* Wed Mar 21 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.1-8
af80d0e
- Fix uninitialized value bug causing crashes throughout the code
af80d0e
- Resolves: rhbz#804783 - [abrt] Segfault during LDAP 'services' lookup
af80d0e
8c71823
* Mon Mar 12 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.1-7
8c71823
- New upstream release 1.8.1
8c71823
- Resolve issue where we could enter an infinite loop trying to connect to an
8c71823
  auth server
8c71823
- Fix serious issue with complex (3+ levels) nested groups
8c71823
- Fix netgroup support for case-insensitivity and aliases
8c71823
- Fix serious issue with lookup bundling resulting in requests never
8c71823
  completing
8c71823
- IPA provider will now check the value of nsAccountLock during pam_acct_mgmt
8c71823
  in addition to pam_authenticate
8c71823
- Fix several regressions in the proxy provider
8c71823
- Resolves: rhbz#743133 - Performance regression with Kerberos authentication
8c71823
                          against AD
8c71823
- Resolves: rhbz#799031 - --debug option for sss_debuglevel doesn't work
8c71823
4135978
* Tue Feb 28 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-6
4135978
- New upstream release 1.8.0
4135978
- Support for the service map in NSS
4135978
- Support for setting default SELinux user context from FreeIPA
4135978
- Support for retrieving SSH user and host keys from LDAP (Experimental)
4135978
- Support for caching autofs LDAP requests (Experimental)
4135978
- Support for caching SUDO rules (Experimental)
4135978
- Include the IPA AutoFS provider
4135978
- Fixed several memory-corruption bugs
4135978
- Fixed a regression in group enumeration since 1.7.0
4135978
- Fixed a regression in the proxy provider
4135978
- Resolves: rhbz#741981 - Separate Cache Timeouts for SSSD
4135978
- Resolves: rhbz#797968 - sssd_be: The requested tar get is not configured is
4135978
                          logged at each login
4135978
- Resolves: rhbz#754114 - [abrt] sssd-1.6.3-1.fc16: ping_check: Process
4135978
                          /usr/sbin/sssd was killed by signal 11 (SIGSEGV)
4135978
- Resolves: rhbz#743133 - Performance regression with Kerberos authentication
4135978
                          against AD
4135978
- Resolves: rhbz#773706 - SSSD fails during autodetection of search bases for
4135978
                          new LDAP features
4135978
- Resolves: rhbz#786957 - sssd and kerberos should change the default location for create the Credential Cashes to /run/usr/USERNAME/krb5cc
4135978
d474da7
* Wed Feb 22 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-5.beta3
d474da7
- Change default kerberos credential cache location to /run/user/<username>
d474da7
e16d49f
* Wed Feb 15 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-4.beta3
e16d49f
- New upstream release 1.8.0 beta 3
e16d49f
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.8.0beta3
e16d49f
- Fixed a regression in group enumeration since 1.7.0
e16d49f
- Fixed several memory-corruption bugs
e16d49f
- Finalized the ABI for the autofs support
e16d49f
- Fixed a regression in the proxy provider
e16d49f
111a1d5
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.8.0-3.beta2
111a1d5
- Rebuild against PCRE 8.30
111a1d5
01ac0e1
* Mon Feb 06 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-1.beta2
01ac0e1
- New upstream release
01ac0e1
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.8.0beta2
01ac0e1
- Fix two minor manpage bugs
01ac0e1
- Include the IPA AutoFS provider
01ac0e1
8814799
* Mon Feb 06 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-1.beta1
8814799
- New upstream release
8814799
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.8.0beta1
8814799
- Support for the service map in NSS
8814799
- Support for setting default SELinux user context from FreeIPA
8814799
- Support for retrieving SSH user and host keys from LDAP (Experimental)
8814799
- Support for caching autofs LDAP requests (Experimental)
8814799
- Support for caching SUDO rules (Experimental)
8814799
e8905f5
* Wed Feb 01 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.7.0-5
e8905f5
- Resolves: rhbz#773706 - SSSD fails during autodetection of search bases for
e8905f5
                          new LDAP features - fix netgroups and sudo as well
e8905f5
b6ef581
* Wed Feb 01 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.7.0-4
b6ef581
- Fixes a serious memory hierarchy bug causing unpredictable behavior in the
b6ef581
  LDAP provider.
b6ef581
2381e85
* Wed Feb 01 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.7.0-3
ae664cc
- Resolves: rhbz#773706 - SSSD fails during autodetection of search bases for
ae664cc
                          new LDAP features
ae664cc
6ec779e
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
6ec779e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6ec779e
a885ab8
* Thu Dec 22 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.7.0-1
a885ab8
- New upstream release 1.7.0
a885ab8
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.7.0
a885ab8
- Support for case-insensitive domains
a885ab8
- Support for multiple search bases in the LDAP provider
a885ab8
- Support for the native FreeIPA netgroup implementation
a885ab8
- Reliability improvements to the process monitor
a885ab8
- New DEBUG facility with more consistent log levels
a885ab8
- New tool to change debug log levels without restarting SSSD
a885ab8
- SSSD will now disconnect from LDAP server when idle
a885ab8
- FreeIPA HBAC rules can choose to ignore srchost options for significant
a885ab8
  performance gains
a885ab8
- Assorted performance improvements in the LDAP provider
a885ab8
f73d44d
* Mon Dec 19 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.4-1
f73d44d
- New upstream release 1.6.4
f73d44d
- Rolls up previous patches applied to the 1.6.3 tarball
f73d44d
- Fixes a rare issue causing crashes in the failover logic
f73d44d
- Fixes an issue where SSSD would return the wrong PAM error code for users
f73d44d
  that it does not recognize.
f73d44d
5633dc7
* Wed Dec 07 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.3-5
5633dc7
- Rebuild against libldb 1.1.4
5633dc7
ece3519
* Tue Nov 29 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.3-4
ece3519
- Resolves: rhbz#753639 - sssd_nss crashes when passed invalid UTF-8 for the
ece3519
                          username in getpwnam()
ece3519
- Resolves: rhbz#758425 - LDAP failover not working if server refuses
ece3519
                          connections
ece3519
95fec2a
* Thu Nov 24 2011 Jakub Hrozek <jhrozek@redhat.com> - 1.6.3-3
95fec2a
- Rebuild for libldb 1.1.3
95fec2a
50d0fe5
* Thu Nov 10 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.3-2
50d0fe5
- Resolves: rhbz#752495 - Crash when apply settings
dd4aa14
46a6ee6
* Fri Nov 04 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.3-1
46a6ee6
- New upstream release 1.6.3
46a6ee6
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.6.3
46a6ee6
- Fixes a major cache performance issue introduced in 1.6.2
46a6ee6
- Fixes a potential infinite-loop with certain LDAP layouts
46a6ee6
9ef1f39
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-5
9ef1f39
- Rebuilt for glibc bug#747377
9ef1f39
9a79ed0
* Sun Oct 23 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.2-4
9a79ed0
- Change selinux policy requirement to Conflicts: with the old version,
9a79ed0
  rather than Requires: the supported version.
9a79ed0
14552a8
* Fri Oct 21 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.2-3
14552a8
- Add explicit requirement on selinux-policy version to address new SBUS
14552a8
  symlinks.
14552a8
359707a
* Wed Oct 19 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.2-2
359707a
- Remove %%files reference to sss_debuglevel copied from wrong upstreeam
359707a
  spec file.
359707a
75138e2
* Tue Oct 18 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.2-1
75138e2
- Improved handling of users and groups with multi-valued name attributes
75138e2
  (aliases)
75138e2
- Performance enhancements
75138e2
    Initgroups on RFC2307bis/FreeIPA
359707a
    HBAC rule processing
75138e2
- Improved process-hang detection and restarting
75138e2
- Enabled the midpoint cache refresh by default (fewer cache misses on
75138e2
  commonly-used entries)
75138e2
- Cleaned up the example configuration
75138e2
- New tool to change debug level on the fly
75138e2
a6910c0
* Mon Aug 29 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.1-1
a6910c0
- New upstream release 1.6.1
a6910c0
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.6.1
a6910c0
- Fixes a serious issue with LDAP connections when the communication is
a6910c0
  dropped (e.g. VPN disconnection, waking from sleep)
a6910c0
- SSSD is now less strict when dealing with users/groups with multiple names
a6910c0
  when a definitive primary name cannot be determined
a6910c0
- The LDAP provider will no longer attempt to canonicalize by default when
a6910c0
  using SASL. An option to re-enable this has been provided.
a6910c0
- Fixes for non-standard LDAP attribute names (e.g. those used by Active
a6910c0
  Directory)
a6910c0
- Three HBAC regressions have been fixed.
a6910c0
- Fix for an infinite loop in the deref code
a6910c0
04d8c96
* Wed Aug 03 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.0-2
04d8c96
- Build with _hardened_build macro
04d8c96
679b5f7
* Wed Aug 03 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.6.0-1
679b5f7
- New upstream release 1.6.0
679b5f7
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.6.0
679b5f7
- Add host access control support for LDAP (similar to pam_host_attr)
679b5f7
- Finer-grained control on principals used with Kerberos (such as for FAST or
679b5f7
- validation)
679b5f7
- Added a new tool sss_cache to allow selective expiring of cached entries
679b5f7
- Added support for LDAP DEREF and ASQ controls
679b5f7
- Added access control features for Novell Directory Server
679b5f7
- FreeIPA dynamic DNS update now checks first to see if an update is needed
679b5f7
- Complete rewrite of the HBAC library
679b5f7
- New libraries: libipa_hbac and libipa_hbac-python
679b5f7
ce222ba
* Tue Jul 05 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.11-2
72bc2e1
- New upstream release 1.5.11
72bc2e1
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.11
72bc2e1
- Fix a serious regression that prevented SSSD from working with ldaps:// URIs
72bc2e1
- IPA Provider: Fix a bug with dynamic DNS that resulted in the wrong IPv6
72bc2e1
- address being saved to the AAAA record
72bc2e1
807b79d
* Fri Jul 01 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.10-1
807b79d
- New upstream release 1.5.10
807b79d
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.10
807b79d
- Fixed a regression introduced in 1.5.9 that could result in blocking calls
807b79d
- to LDAP
807b79d
4ef0c7f
* Thu Jun 30 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.9-1
4ef0c7f
- New upstream release 1.5.9
4ef0c7f
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.9
4ef0c7f
- Support for overriding home directory, shell and primary GID locally
4ef0c7f
- Properly honor TTL values from SRV record lookups
4ef0c7f
- Support non-POSIX groups in nested group chains (for RFC2307bis LDAP
4ef0c7f
- servers)
4ef0c7f
- Properly escape IPv6 addresses in the failover code
4ef0c7f
- Do not crash if inotify fails (e.g. resource exhaustion)
4ef0c7f
- Don't add multiple TGT renewal callbacks (too many log messages)
4ef0c7f
91fde1e
* Fri May 27 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.8-1
91fde1e
- New upstream release 1.5.8
91fde1e
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.8
91fde1e
- Support for the LDAP paging control
91fde1e
- Support for multiple DNS servers for name resolution
91fde1e
- Fixes for several group membership bugs
91fde1e
- Fixes for rare crash bugs
91fde1e
5796dc7
* Mon May 23 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.7-3
5796dc7
- Resolves: rhbz#706740 - Orphaned links on rc0.d-rc6.d
5796dc7
- Make sure to properly convert to systemd if upgrading from newer
5796dc7
- updates for Fedora 14
5796dc7
d4aff46
* Mon May 02 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.7-2
d4aff46
- Fix segfault in TGT renewal
d4aff46
e4bdfb2
* Fri Apr 29 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.7-1
e4bdfb2
- Resolves: rhbz#700891 - CVE-2011-1758 sssd: automatic TGT renewal overwrites
e4bdfb2
-                         cached password with predicatable filename
e4bdfb2
eedc5ec
* Wed Apr 20 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.6.1-1
eedc5ec
- Re-add manpage translations
eedc5ec
8ada5dc
* Wed Apr 20 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.6-1
8ada5dc
- New upstream release 1.5.6
8ada5dc
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.6
8ada5dc
- Fixed a serious memory leak in the memberOf plugin
8ada5dc
- Fixed a regression with the negative cache that caused it to be essentially
8ada5dc
- nonfunctional
8ada5dc
- Fixed an issue where the user's full name would sometimes be removed from
8ada5dc
- the cache
8ada5dc
- Fixed an issue with password changes in the kerberos provider not working
8ada5dc
- with kpasswd
8ada5dc
d9b22a7
* Wed Apr 20 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.5-5
d9b22a7
- Resolves: rhbz#697057 - kpasswd fails when using sssd and
d9b22a7
-                         kadmin server != kdc server
d9b22a7
- Upgrades from SysV should now maintain enabled/disabled status
d9b22a7
d7effc6
* Mon Apr 18 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.5-4
d7effc6
- Fix %%postun
d7effc6
d895a5f
* Thu Apr 14 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.5-3
d895a5f
- Fix systemd conversion. Upgrades from SysV to systemd weren't properly
d895a5f
- enabling the systemd service.
d895a5f
- Fix a serious memory leak in the memberOf plugin
d895a5f
- Fix an issue where the user's full name would sometimes be removed
d895a5f
- from the cache
d895a5f
7dcee20
* Tue Apr 12 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.5-2
7dcee20
- Install systemd unit file instead of sysv init script
7dcee20
c8fb340
* Tue Apr 12 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.5-1
c8fb340
- New upstream release 1.5.5
c8fb340
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.5
c8fb340
- Fixes for several crash bugs
c8fb340
- LDAP group lookups will no longer abort if there is a zero-length member
c8fb340
- attribute
c8fb340
- Add automatic fallback to 'cn' if the 'gecos' attribute does not exist
c8fb340
3eed4c3
* Thu Mar 24 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.4-1
3eed4c3
- New upstream release 1.5.4
3eed4c3
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.4
3eed4c3
- Fixes for Active Directory when not all users and groups have POSIX attributes
3eed4c3
- Fixes for handling users and groups that have name aliases (aliases are ignored)
3eed4c3
- Fix group memberships after initgroups in the IPA provider
3eed4c3
f6c3624
* Thu Mar 17 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.3-2
f6c3624
- Resolves: rhbz#683267 - sssd 1.5.1-9 breaks AD authentication
f6c3624
53637a0
* Fri Mar 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.3-1
53637a0
- New upstream release 1.5.3
53637a0
- Support for libldb >= 1.0.0
53637a0
3b36449
* Thu Mar 10 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.2-1
3b36449
- New upstream release 1.5.2
3b36449
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.2
3b36449
- Fixes for support of FreeIPA v2
3b36449
- Fixes for failover if DNS entries change
3b36449
- Improved sss_obfuscate tool with better interactive mode
3b36449
- Fix several crash bugs
3b36449
- Don't attempt to use START_TLS over SSL. Some LDAP servers can't handle this
3b36449
- Delete users from the local cache if initgroups calls return 'no such user'
3b36449
- (previously only worked for getpwnam/getpwuid)
3b36449
- Use new Transifex.net translations
3b36449
- Better support for automatic TGT renewal (now survives restart)
3b36449
- Netgroup fixes
3b36449
b28cafe
* Sun Feb 27 2011 Simo Sorce <ssorce@redhat.com> - 1.5.1-9
b28cafe
- Rebuild sssd against libldb 1.0.2 so the memberof module loads again.
b28cafe
- Related: rhbz#677425
b28cafe
7a33e77
* Mon Feb 21 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-8
7a33e77
- Resolves: rhbz#677768 - name service caches names, so id command shows
7a33e77
-                         recently deleted users
7a33e77
da2a04f
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-7
da2a04f
- Ensure that SSSD builds against libldb-1.0.0 on F15 and later
da2a04f
- Remove .la for memberOf
da2a04f
0ad47aa
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-6
0ad47aa
- Fix memberOf install path
0ad47aa
e8ab291
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-5
e8ab291
- Add support for libldb 1.0.0
e8ab291
8923e26
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-4
8923e26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8923e26
d12cd5d
* Tue Feb 01 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-3
d12cd5d
- Fix nested group member filter sanitization for RFC2307bis
d12cd5d
- Put translated tool manpages into the sssd-tools subpackage
d12cd5d
7e3a2cd
* Thu Jan 27 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-2
7e3a2cd
- Restore Requires: cyrus-sasl-gssapi as it is not auto-detected during
7e3a2cd
- rpmbuild
7e3a2cd
f151b06
* Thu Jan 27 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.1-1
f151b06
- New upstream release 1.5.1
f151b06
- Addresses CVE-2010-4341 - DoS in sssd PAM responder can prevent logins
f151b06
- Vast performance improvements when enumerate = true
f151b06
- All PAM actions will now perform a forced initgroups lookup instead of just
f151b06
- a user information lookup
f151b06
-   This guarantees that all group information is available to other
f151b06
-   providers, such as the simple provider.
f151b06
- For backwards-compatibility, DNS lookups will also fall back to trying the
f151b06
- SSSD domain name as a DNS discovery domain.
f151b06
- Support for more password expiration policies in LDAP
f151b06
-    389 Directory Server
f151b06
-    FreeIPA
f151b06
-    ActiveDirectory
f151b06
- Support for ldap_tls_{cert,key,cipher_suite} config options
f151b06
-Assorted bugfixes
f151b06
3a15e92
* Tue Jan 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.0-2
3a15e92
- CVE-2010-4341 - DoS in sssd PAM responder can prevent logins
3a15e92
5225c32
* Wed Dec 22 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.5.0-1
5225c32
- New upstream release 1.5.0
5225c32
- Fixed issues with LDAP search filters that needed to be escaped
5225c32
- Add Kerberos FAST support on platforms that support it
5225c32
- Reduced verbosity of PAM_TEXT_INFO messages for cached credentials
5225c32
- Added a Kerberos access provider to honor .k5login
5225c32
- Addressed several thread-safety issues in the sss_client code
5225c32
- Improved support for delayed online Kerberos auth
5225c32
- Significantly reduced time between connecting to the network/VPN and
5225c32
- acquiring a TGT
5225c32
- Added feature for automatic Kerberos ticket renewal
5225c32
- Provides the kerberos ticket for long-lived processes or cron jobs
5225c32
- even when the user logs out
5225c32
- Added several new features to the LDAP access provider
5225c32
- Support for 'shadow' access control
5225c32
- Support for authorizedService access control
5225c32
- Ability to mix-and-match LDAP access control features
5225c32
- Added an option for a separate password-change LDAP server for those
5225c32
- platforms where LDAP referrals are not supported
5225c32
- Added support for manpage translations
5225c32
5225c32
069ad40
* Thu Nov 18 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.4.1-3
069ad40
- Solve a shutdown race-condition that sometimes left processes running
069ad40
- Resolves: rhbz#606887 - SSSD stops on upgrade
069ad40
4e1de07
* Tue Nov 16 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.4.1-2
4e1de07
- Log startup errors to the syslog
4e1de07
- Allow cache cleanup to be disabled in sssd.conf
4e1de07
9d5bcde
* Mon Nov 01 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.4.1-1
9d5bcde
- New upstream release 1.4.1
9d5bcde
- Add support for netgroups to the proxy provider
9d5bcde
- Fixes a minor bug with UIDs/GIDs >= 2^31
9d5bcde
- Fixes a segfault in the kerberos provider
9d5bcde
- Fixes a segfault in the NSS responder if a data provider crashes
9d5bcde
- Correctly use sdap_netgroup_search_base
9d5bcde
75efc48
* Mon Oct 18 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.4.0-2
75efc48
- Fix incorrect tarball URL
75efc48
9b0ef1c
* Mon Oct 18 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.4.0-1
9b0ef1c
- New upstream release 1.4.0
9b0ef1c
- Added support for netgroups to the LDAP provider
9b0ef1c
- Performance improvements made to group processing of RFC2307 LDAP servers
9b0ef1c
- Fixed nested group issues with RFC2307bis LDAP servers without a memberOf plugin
9b0ef1c
- Build-system improvements to support Gentoo
9b0ef1c
- Split out several libraries into the ding-libs tarball
9b0ef1c
- Manpage reviewed and updated
9b0ef1c
2d631b3
* Mon Oct 04 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-35
2d631b3
- Fix pre and post script requirements
2d631b3
3f78644
* Mon Oct 04 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-34
3f78644
- Resolves: rhbz#606887 - sssd stops on upgrade
3f78644
8cdc9d4
* Fri Oct 01 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-33
8cdc9d4
- Resolves: rhbz#626205 - Unable to unlock screen
8cdc9d4
d19c240
* Tue Sep 28 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-32
c99e02a
- Resolves: rhbz#637955 - libini_config-devel needs libcollection-devel but
c99e02a
-                         doesn't require it
d19c240
cfa7be9
* Thu Sep 16 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-31
cfa7be9
- Resolves: rhbz#632615 - the krb5 locator plugin isn't packaged for multilib
cfa7be9
8c665d0
* Tue Aug 24 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.3.0-30
8c665d0
- Resolves: CVE-2010-2940 - sssd allows null password entry to authenticate
8c665d0
-                           against LDAP
8c665d0
eb2fc3c
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.2.91-21
eb2fc3c
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
eb2fc3c
bd215c4
* Fri Jul 09 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.2.91-20
bd215c4
- New upstream version 1.2.91 (1.3.0rc1)
bd215c4
- Improved LDAP failover
bd215c4
- Synchronous sysdb API (provides performance enhancements)
bd215c4
- Better online reconnection detection
bd215c4
d41b28e
* Mon Jun 21 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.2.1-15
d41b28e
- New stable upstream version 1.2.1
d41b28e
- Resolves: rhbz#595529 - spec file should eschew %%define in favor of
d41b28e
-                         %%global
d41b28e
- Resolves: rhbz#593644 - Empty list of simple_allow_users causes sssd service
d41b28e
-                         to fail while restart.
d41b28e
- Resolves: rhbz#599026 - Makefile typo causes SSSD not to use the kernel
d41b28e
-                         keyring
d41b28e
- Resolves: rhbz#599724 - sssd is broken on Rawhide
d41b28e
d5f2e4a
* Mon May 24 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.2.0-12
d5f2e4a
- New stable upstream version 1.2.0
d5f2e4a
- Support ServiceGroups for FreeIPA v2 HBAC rules
d5f2e4a
- Fix long-standing issue with auth_provider = proxy
d5f2e4a
- Better logging for TLS issues in LDAP
d5f2e4a
439d34e
* Tue May 18 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.1.92-11
439d34e
- New LDAP access provider allows for filtering user access by LDAP attribute
439d34e
- Reduced default timeout for detecting offline status with LDAP
439d34e
- GSSAPI ticket lifetime made configurable
439d34e
- Better offline->online transition support in Kerberos
439d34e
6a6c9eb
* Fri May 07 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.1.91-10
6a6c9eb
- Release new upstream version 1.1.91
6a6c9eb
- Enhancements when using SSSD with FreeIPA v2
6a6c9eb
- Support for deferred kinit
6a6c9eb
- Support for DNS SRV records for failover
6a6c9eb
e5b19bf
* Fri Apr 02 2010 Simo Sorce <ssorce@redhat.com> - 1.1.1-3
e5b19bf
- Bump up release number to avoid library sub-packages version issues with
e5b19bf
  previous releases.
e5b19bf
db77daa
* Thu Apr 01 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.1.1-1
db77daa
- New upstream release 1.1.1
db77daa
- Fixed the IPA provider (which was segfaulting at start)
db77daa
- Fixed a bug in the SSSDConfig API causing some options to revert to
db77daa
- their defaults
db77daa
- This impacted the Authconfig UI
db77daa
- Ensure that SASL binds to LDAP auto-retry when interrupted by a signal
db77daa
e4c185b
* Tue Mar 23 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.1.0-2
58c745d
- Release SSSD 1.1.0 final
58c745d
- Fix two potential segfaults
58c745d
- Fix memory leak in monitor
58c745d
- Better error message for unusable confdb
58c745d
026e8e0
* Wed Mar 17 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.1.0-1.pre20100317git0ea7f19
026e8e0
- Release candidate for SSSD 1.1
026e8e0
- Add simple access provider
026e8e0
- Create subpackages for libcollection, libini_config, libdhash and librefarray
026e8e0
- Support IPv6
026e8e0
- Support LDAP referrals
026e8e0
- Fix cache issues
026e8e0
- Better feedback from PAM when offline
026e8e0
7362f8c
* Wed Feb 24 2010 Stephen Gallagehr <sgallagh@redhat.com> - 1.0.5-2
7362f8c
- Rebuild against new libtevent
7362f8c
94dadd2
* Fri Feb 19 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.0.5-1
94dadd2
- Fix licenses in sources and on RPMs
94dadd2
48e4ae8
* Mon Jan 25 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.0.4-1
48e4ae8
- Fix regression on 64-bit platforms
48e4ae8
2600cc3
* Fri Jan 22 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.0.3-1
2600cc3
- Fixes link error on platforms that do not do implicit linking
2600cc3
- Fixes double-free segfault in PAM
2600cc3
- Fixes double-free error in async resolver
2600cc3
- Fixes support for TCP-based DNS lookups in async resolver
2600cc3
- Fixes memory alignment issues on ARM processors
2600cc3
- Manpage fixes
2600cc3
23f12b7
* Thu Jan 14 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.0.2-1
23f12b7
- Fixes a bug in the failover code that prevented the SSSD from detecting when it went back online
23f12b7
- Fixes a bug causing long (sometimes multiple-minute) waits for NSS requests
23f12b7
- Several segfault bugfixes
23f12b7
2de26e9
* Mon Jan 11 2010 Stephen Gallagher <sgallagh@redhat.com> - 1.0.1-1
2de26e9
- Fix CVE-2010-0014
2de26e9
d9fd9ee
* Mon Dec 21 2009 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-2
d9fd9ee
- Patch SSSDConfig API to address
d9fd9ee
- https://bugzilla.redhat.com/show_bug.cgi?id=549482
d9fd9ee
f5d8b9b
* Fri Dec 18 2009 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-1
f5d8b9b
- New upstream stable release 1.0.0
f5d8b9b
336aac3
* Fri Dec 11 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.99.1-1
336aac3
- New upstream bugfix release 0.99.1
336aac3
ad368b8
* Mon Nov 30 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.99.0-1
ad368b8
- New upstream release 0.99.0
ad368b8
9b52793
* Tue Oct 27 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.7.1-1
9b52793
- Fix segfault in sssd_pam when cache_credentials was enabled
9b52793
- Update the sample configuration
9b52793
- Fix upgrade issues caused by data provider service removal
9b52793
04c1b54
* Mon Oct 26 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.7.0-2
04c1b54
- Fix upgrade issues from old (pre-0.5.0) releases of SSSD
04c1b54
d6e2c70
* Fri Oct 23 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.7.0-1
d6e2c70
- New upstream release 0.7.0
d6e2c70
fba27f0
* Thu Oct 15 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.6.1-2
fba27f0
- Fix missing file permissions for sssd-clients
fba27f0
a0cdb7e
* Tue Oct 13 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.6.1-1
a0cdb7e
- Add SSSDConfig API
a0cdb7e
- Update polish translation for 0.6.0
a0cdb7e
- Fix long timeout on ldap operation
a0cdb7e
- Make dp requests more robust
a0cdb7e
4067ebb
* Tue Sep 29 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.6.0-1
4067ebb
- Ensure that the configuration upgrade script always writes the config
4067ebb
  file with 0600 permissions
4067ebb
- Eliminate an infinite loop in group enumerations
4067ebb
7a716e3
* Mon Sep 28 2009 Sumit Bose <sbose@redhat.com> - 0.6.0-0
7a716e3
- New upstream release 0.6.0
7a716e3
8b935a1
* Mon Aug 24 2009 Simo Sorce <ssorce@redhat.com> - 0.5.0-0
8b935a1
- New upstream release 0.5.0
8b935a1
2cae3a8
* Wed Jul 29 2009 Jakub Hrozek <jhrozek@redhat.com> - 0.4.1-4
2cae3a8
- Fix for CVE-2009-2410 - Native SSSD users with no password set could log in
2cae3a8
  without a password. (Patch by Stephen Gallagher)
2cae3a8
56d52b4
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-3
56d52b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
56d52b4
7522c31
* Mon Jun 22 2009 Simo Sorce <ssorce@redhat.com> - 0.4.1-2
7522c31
- Fix a couple of segfaults that may happen on reload
7522c31
d0eb246
* Thu Jun 11 2009 Simo Sorce <ssorce@redhat.com> - 0.4.1-1
d0eb246
- add missing configure check that broke stopping the daemon
d0eb246
- also fix default config to add a missing required option
d0eb246
298ea67
* Mon Jun  8 2009 Simo Sorce <ssorce@redhat.com> - 0.4.1-0
298ea67
- latest upstream release.
298ea67
- also add a patch that fixes debugging output (potential segfault)
298ea67
e034caf
* Mon Apr 20 2009 Simo Sorce <ssorce@redhat.com> - 0.3.2-2
e034caf
- release out of the official 0.3.2 tarball
e034caf
6f3fcee
* Mon Apr 20 2009 Jakub Hrozek <jhrozek@redhat.com> - 0.3.2-1
6f3fcee
- bugfix release 0.3.2
6f3fcee
- includes previous release patches
6f3fcee
- change permissions of the /etc/sssd/sssd.conf to 0600
6f3fcee
d4c7182
* Tue Apr 14 2009 Simo Sorce <ssorce@redhat.com> - 0.3.1-2
d4c7182
- Add last minute bug fixes, found in testing the package
d4c7182
9797cfd
* Mon Apr 13 2009 Simo Sorce <ssorce@redhat.com> - 0.3.1-1
9797cfd
- Version 0.3.1
9797cfd
- includes previous release patches
9797cfd
9afc8fc
* Mon Apr 13 2009 Simo Sorce <ssorce@redhat.com> - 0.3.0-2
9afc8fc
- Try to fix build adding automake as an explicit BuildRequire
abd724a
- Add also a couple of last minute patches from upstream
9afc8fc
276bbb1
* Mon Apr 13 2009 Simo Sorce <ssorce@redhat.com> - 0.3.0-1
276bbb1
- Version 0.3.0
276bbb1
- Provides file based configuration and lots of improvements
276bbb1
a85a961
* Tue Mar 10 2009 Simo Sorce <ssorce@redhat.com> - 0.2.1-1
a85a961
- Version 0.2.1
a85a961
4f14304
* Tue Mar 10 2009 Simo Sorce <ssorce@redhat.com> - 0.2.0-1
4f14304
- Version 0.2.0
4f14304
abb369a
* Sun Mar 08 2009 Jakub Hrozek <jhrozek@redhat.com> - 0.1.0-5.20090309git691c9b3
abb369a
- package git snapshot
abb369a
abb369a
* Fri Mar 06 2009 Jakub Hrozek <jhrozek@redhat.com> - 0.1.0-4
abb369a
- fixed items found during review
abb369a
- added initscript
abb369a
abb369a
* Thu Mar 05 2009 Sumit Bose <sbose@redhat.com> - 0.1.0-3
abb369a
- added sss_client
abb369a
abb369a
* Mon Feb 23 2009 Jakub Hrozek <jhrozek@redhat.com> - 0.1.0-2
abb369a
- Small cleanup and fixes in the spec file
abb369a
abb369a
* Thu Feb 12 2009 Stephen Gallagher <sgallagh@redhat.com> - 0.1.0-1
abb369a
- Initial release (based on version 0.1.0 upstream code)