5514b84469
Problem: - Centos 7.5 upgraded nss-pam-ldapds. - Porting of nss-pam-ldapds patches did not resolve and 'fuzz' in the line numbers of the patches. - If nss-pam-ldapd is built by rpm 4.11, or default version of rpm until 4.14 is compiled, a fuzzy patch results in the creating of an .orig file. - Packaging of nss-pam-ldapds failes due to the unexpected, and unpackaged .orig file Solution: Safest solution is to de-fuzz our nss-pam-ldapds patches. Story: 2003389 Task: 26755 Change-Id: I82092c3ff4d7cf711d0e1542e61bccb491bd8388 Signed-off-by: Sun Austin <austin.sun@intel.com>
57 lines
2.1 KiB
Diff
57 lines
2.1 KiB
Diff
From 2ee677b05e412d2f60aa290e64d642667dd80b4c Mon Sep 17 00:00:00 2001
|
|
From: Vu Tran <vu.tran@windriver.com>
|
|
Date: Wed Apr 20 13:37:31 2016 -0400
|
|
Subject: nss-pam-ldapd: include Titanium Cloud changes
|
|
|
|
New nss-pam-ldapd uses default ldap group ID, so we set
|
|
gid in nslcd.conf to ldap.
|
|
|
|
Signed-off-by: Sun Austin <austin.sun@intel.com>
|
|
---
|
|
SPECS/nss-pam-ldapd.spec | 13 +++++++++----
|
|
1 file changed, 9 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/SPECS/nss-pam-ldapd.spec b/SPECS/nss-pam-ldapd.spec
|
|
index e6e0844..ae547f1 100644
|
|
--- a/SPECS/nss-pam-ldapd.spec
|
|
+++ b/SPECS/nss-pam-ldapd.spec
|
|
@@ -49,6 +49,7 @@ Source1: http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-%{version}.tar.gz.s
|
|
Source2: nslcd.init
|
|
Source3: nslcd.tmpfiles
|
|
Source4: nslcd.service
|
|
+Source5: nslcd.conf
|
|
Patch1: nss-pam-ldapd-0.8.12-validname.patch
|
|
Patch2: nss-pam-ldapd-0.8.12-In-nslcd-log-EPIPE-only-on-debug-level.patch
|
|
Patch3: nss-pam-ldapd-0.8.12-uid-overflow.patch
|
|
@@ -178,6 +179,9 @@ mkdir -p -m 0755 $RPM_BUILD_ROOT/%{_tmpfilesdir}
|
|
install -p -m 0644 %{SOURCE3} $RPM_BUILD_ROOT/%{_tmpfilesdir}/%{name}.conf
|
|
%endif
|
|
|
|
+# WRS
|
|
+install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/%{_sysconfdir}/nslcd.conf
|
|
+
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
@@ -261,12 +265,13 @@ if test "$1" -eq "1" && ! grep -q -F "# $comment" $target 2> /dev/null ; then
|
|
grep -E '^host[[:blank:]]' $source |\
|
|
sed -r -e "s,^host[[:blank:]](.*),uri ${scheme}://\1/,g" >> $target
|
|
fi
|
|
+ # WRS: we don't want to change our custom base in nslcd.conf
|
|
# Base doesn't require any special logic.
|
|
- if grep -E -q '^base[[:blank:]]' $source 2> /dev/null ; then
|
|
+ # if grep -E -q '^base[[:blank:]]' $source 2> /dev/null ; then
|
|
# Comment out the packaged default base and replace it.
|
|
- sed -i -r -e 's,^(base[[:blank:]].*),# \1,g' $target
|
|
- grep -E '^base[[:blank:]]' $source >> $target
|
|
- fi
|
|
+ # sed -i -r -e 's,^(base[[:blank:]].*),# \1,g' $target
|
|
+ # grep -E '^base[[:blank:]]' $source >> $target
|
|
+ # fi
|
|
# Pull in these settings, if they're set, directly.
|
|
grep -E '^(binddn|bindpw|port|scope|ssl|pagesize)[[:blank:]]' $source 2> /dev/null >> $target
|
|
grep -E '^(tls_)' $source 2> /dev/null >> $target
|
|
--
|
|
2.7.4
|
|
|