New upstream release 1.9.0 beta 5

This commit is contained in:
Jakub Hrozek 2012-07-19 12:45:51 +02:00
parent 9e16356e4a
commit b75ed0d13d
4 changed files with 16 additions and 31 deletions

1
.gitignore vendored
View File

@ -32,3 +32,4 @@ sssd-1.2.91.tar.gz
/sssd-1.9.0beta2.tar.gz
/sssd-1.9.0beta3.tar.gz
/sssd-1.9.0beta4.tar.gz
/sssd-1.9.0beta5.tar.gz

View File

@ -1,26 +0,0 @@
From 574981ba9b1c7e4c0455ea85d951ebc2817ebf54 Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <sgallagh@redhat.com>
Date: Mon, 16 Jul 2012 09:46:24 -0400
Subject: [PATCH] AD: Add missing DP option terminator
---
src/providers/ad/ad_opts.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/providers/ad/ad_opts.h b/src/providers/ad/ad_opts.h
index 2648044c0079ed92b7c24ee7eac54af1d2b61a13..9f950a803330a1972c49e71fb1f99f22cde6fd35 100644
--- a/src/providers/ad/ad_opts.h
+++ b/src/providers/ad/ad_opts.h
@@ -134,7 +134,8 @@ struct dp_option ad_def_krb5_opts[] = {
{ "krb5_renew_interval", DP_OPT_NUMBER, NULL_NUMBER, NULL_NUMBER },
{ "krb5_use_fast", DP_OPT_STRING, NULL_STRING, NULL_STRING },
{ "krb5_fast_principal", DP_OPT_STRING, NULL_STRING, NULL_STRING },
- { "krb5_canonicalize", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }
+ { "krb5_canonicalize", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE },
+ DP_OPTION_TERMINATOR
};
struct sdap_attr_map ad_2008r2_attr_map[] = {
--
1.7.10.4

View File

@ -1 +1 @@
7326aab9bddf80f50835862d092cdbb3 sssd-1.9.0beta4.tar.gz
076e28e34b1077783facfe3fb7a55baf sssd-1.9.0beta5.tar.gz

View File

@ -16,17 +16,16 @@
Name: sssd
Version: 1.9.0
Release: 11%{?dist}.beta4
Release: 12%{?dist}.beta5
Group: Applications/System
Summary: System Security Services Daemon
License: GPLv3+
URL: http://fedorahosted.org/sssd/
Source0: https://fedorahosted.org/released/sssd/%{name}-%{version}beta4.tar.gz
Source0: https://fedorahosted.org/released/sssd/%{name}-%{version}beta5.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
### Patches ###
Patch0001: 0001-AD-Add-missing-DP-option-terminator.patch
### Dependencies ###
@ -201,7 +200,7 @@ UpdateTimestamps() {
done
}
%setup -q -n %{name}-1.8.94
%setup -q -n %{name}-1.8.95
for p in %patches ; do
%__patch -p1 -i $p
@ -499,6 +498,17 @@ fi
%postun -n libipa_hbac -p /sbin/ldconfig
%changelog
* Thu Jul 19 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.0-12.beta5
- New upstream release 1.9.0 beta 5
- Obsoletes the patch for missing DP_OPTION_TERMINATOR in AD provider options
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.9.0beta5
- Many fixes for the support for setting default SELinux user context from
FreeIPA, most notably fixed the specificity evaluation
- Fixed an incorrect default in the krb5_canonicalize option of the AD
provider which was preventing password change operation
- The shadowLastChange attribute value is now correctly updated with the
number of days since the Epoch, not seconds
* Fri Jul 16 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-11.beta4
- Fix broken ARM build
- Add missing DP_OPTION_TERMINATOR in AD provider options