From c1a3faf6c2e8678dfd3e69dcf5039c2393291288 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 10 May 2022 03:03:31 -0400 Subject: [PATCH] import nss-pam-ldapd-0.9.9-5.el8 --- .gitignore | 1 + .nss-pam-ldapd.metadata | 1 + SOURCES/0001-Disable-pylint-tests.patch | 31 ++ .../0002-Watch-for-uint32_t-overflows.patch | 96 ++++ SOURCES/0003-Allow-logging-longer-lines.patch | 12 + SOURCES/nslcd.service | 14 + SOURCES/nslcd.tmpfiles | 2 + SOURCES/nss-pam-ldapd-0.9.9.tar.gz.sig | Bin 0 -> 591 bytes SPECS/nss-pam-ldapd.spec | 415 ++++++++++++++++++ 9 files changed, 572 insertions(+) create mode 100644 .gitignore create mode 100644 .nss-pam-ldapd.metadata create mode 100644 SOURCES/0001-Disable-pylint-tests.patch create mode 100644 SOURCES/0002-Watch-for-uint32_t-overflows.patch create mode 100644 SOURCES/0003-Allow-logging-longer-lines.patch create mode 100644 SOURCES/nslcd.service create mode 100644 SOURCES/nslcd.tmpfiles create mode 100644 SOURCES/nss-pam-ldapd-0.9.9.tar.gz.sig create mode 100644 SPECS/nss-pam-ldapd.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4ffdaa4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/nss-pam-ldapd-0.9.9.tar.gz diff --git a/.nss-pam-ldapd.metadata b/.nss-pam-ldapd.metadata new file mode 100644 index 0000000..d95f98d --- /dev/null +++ b/.nss-pam-ldapd.metadata @@ -0,0 +1 @@ +9d1bc839cf1b9a2ee9c6c927b8855031a6251d1e SOURCES/nss-pam-ldapd-0.9.9.tar.gz diff --git a/SOURCES/0001-Disable-pylint-tests.patch b/SOURCES/0001-Disable-pylint-tests.patch new file mode 100644 index 0000000..dd1c390 --- /dev/null +++ b/SOURCES/0001-Disable-pylint-tests.patch @@ -0,0 +1,31 @@ +From 5e4ef70a1fda792d7ca32311ecc29302c7b13ca5 Mon Sep 17 00:00:00 2001 +From: Jakub Hrozek +Date: Sun, 1 Apr 2018 10:40:13 +0200 +Subject: [PATCH 1/2] Disable pylint tests + +--- + tests/Makefile.am | 8 +++++--- + 1 file changed, 5 insertions(+), 3 deletions(-) + +diff --git a/tests/Makefile.am b/tests/Makefile.am +index 0a7854eec62520014919ad3983db70c78be483e2..8c742a78e3ce8e822fbd7bd9d5735a010e2f0f80 100644 +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -22,9 +22,11 @@ TESTS = test_dict test_set test_tio test_expr test_getpeercred test_cfg \ + test_attmap test_myldap.sh test_common test_nsscmds.sh \ + test_pamcmds.sh test_manpages.sh test_clock \ + test_tio_timeout +-if HAVE_PYTHON +- TESTS += test_pycompile.sh test_pylint.sh +-endif ++ ++#if HAVE_PYTHON ++# TESTS += test_pycompile.sh test_pylint.sh ++#endif ++ + if ENABLE_PYNSLCD + TESTS += test_pynslcd_cache.py test_doctest.sh + endif +-- +2.14.3 + diff --git a/SOURCES/0002-Watch-for-uint32_t-overflows.patch b/SOURCES/0002-Watch-for-uint32_t-overflows.patch new file mode 100644 index 0000000..8ae83a1 --- /dev/null +++ b/SOURCES/0002-Watch-for-uint32_t-overflows.patch @@ -0,0 +1,96 @@ +From ae0a9312c562985838fdd9845ef95fe61e8aa3de Mon Sep 17 00:00:00 2001 +From: Jakub Hrozek +Date: Sun, 1 Apr 2018 10:57:22 +0200 +Subject: [PATCH 2/2] Watch for uint32_t overflows + +Always use a function that we know will catch out-of-range values for UIDs and +GIDs, which are currently unsigned 32-bit numbers everywhere, and which won't +produce a result that'll silently be truncated if we store the result in a +uid_t or gid_t. +--- + nslcd/common.c | 28 ++++++++++++++++------------ + nslcd/common.h | 27 +++------------------------ + 2 files changed, 19 insertions(+), 36 deletions(-) + +diff --git a/nslcd/common.c b/nslcd/common.c +index 60be7773d2c809f3177744ced0dd0ba90c86e820..de640b47806757e0bb2e704b3b79f1ecb18bbc45 100644 +--- a/nslcd/common.c ++++ b/nslcd/common.c +@@ -338,19 +338,23 @@ unsigned long int binsid2id(const char *binsid) + ((((unsigned long int)binsid[i + 3]) & 0xff) << 24); + } + +-#ifdef WANT_STRTOUI +-/* provide a strtoui() implementation, similar to strtoul() but returning +- an range-checked unsigned int instead */ +-unsigned int strtoui(const char *nptr, char **endptr, int base) ++/* provide a strtoid() implementation, similar to strtoul() but returning ++ an range-checked uint32_t instead */ ++unsigned int strtoid(const char *nptr,char **endptr,int base) + { +- unsigned long val; +- val = strtoul(nptr, endptr, base); +- if (val > UINT_MAX) ++ long long val; ++ /* use the fact that long long is 64-bit, even on 32-bit systems */ ++ val=strtoll(nptr,endptr,base); ++ if (val>UINT32_MAX) + { +- errno = ERANGE; +- return UINT_MAX; ++ errno=ERANGE; ++ return UINT32_MAX; + } +- /* If errno was set by strtoul, we'll pass it back as-is */ +- return (unsigned int)val; ++ else if (val < 0) ++ { ++ errno=EINVAL; ++ return UINT32_MAX; ++ } ++ /* If errno was set, we'll pass it back as-is */ ++ return (uint32_t)val; + } +-#endif /* WANT_STRTOUI */ +diff --git a/nslcd/common.h b/nslcd/common.h +index 26fcf48ae2a6dc50bc97fab238ecc9a1879342ce..97d386eaf1f6881182729c5d8e46ce30d2d28eba 100644 +--- a/nslcd/common.h ++++ b/nslcd/common.h +@@ -161,31 +161,10 @@ void invalidator_do(enum ldap_map_selector map); + #define BUFLEN_HOSTNAME 256 /* host names or FQDN (and safe version) */ + #define BUFLEN_MESSAGE 1024 /* message strings */ + +-/* provide strtouid() function alias */ +-#if SIZEOF_UID_T == SIZEOF_UNSIGNED_LONG_INT +-#define strtouid (uid_t)strtoul +-#elif SIZEOF_UID_T == SIZEOF_UNSIGNED_LONG_LONG_INT +-#define strtouid (uid_t)strtoull +-#elif SIZEOF_UID_T == SIZEOF_UNSIGNED_INT +-#define WANT_STRTOUI 1 +-#define strtouid (uid_t)strtoui +-#else +-#error unable to find implementation for strtouid() +-#endif + +-/* provide strtogid() function alias */ +-#if SIZEOF_GID_T == SIZEOF_UNSIGNED_LONG_INT +-#define strtogid (gid_t)strtoul +-#elif SIZEOF_GID_T == SIZEOF_UNSIGNED_LONG_LONG_INT +-#define strtogid (gid_t)strtoull +-#elif SIZEOF_GID_T == SIZEOF_UNSIGNED_INT +-#ifndef WANT_STRTOUI +-#define WANT_STRTOUI 1 +-#endif +-#define strtogid (gid_t)strtoui +-#else +-#error unable to find implementation for strtogid() +-#endif ++uint32_t strtoid(const char *nptr,char **endptr,int base); ++#define strtouid (uid_t)strtoid ++#define strtogid (gid_t)strtoid + + #ifdef WANT_STRTOUI + /* provide a strtoui() if it is needed */ +-- +2.14.3 + diff --git a/SOURCES/0003-Allow-logging-longer-lines.patch b/SOURCES/0003-Allow-logging-longer-lines.patch new file mode 100644 index 0000000..302994c --- /dev/null +++ b/SOURCES/0003-Allow-logging-longer-lines.patch @@ -0,0 +1,12 @@ +diff -up a/nslcd/log.c b/nslcd/log.c +--- a/nslcd/log.c.orig 2021-12-06 14:27:05.912471587 +0100 ++++ b/nslcd/log.c 2021-12-06 14:27:35.541779753 +0100 +@@ -230,7 +230,7 @@ void log_log(int pri, const char *format + { + int res; + struct log_cfg *lst; +- char buffer[200]; ++ char buffer[512]; + va_list ap; + #ifndef TLS + char *sessionid, *requestid; diff --git a/SOURCES/nslcd.service b/SOURCES/nslcd.service new file mode 100644 index 0000000..5672791 --- /dev/null +++ b/SOURCES/nslcd.service @@ -0,0 +1,14 @@ +[Unit] +Description=Naming services LDAP client daemon. +After=syslog.target network.target named.service dirsrv.target slapd.service +Documentation=man:nslcd(8) man:nslcd.conf(5) + +[Service] +Type=forking +PIDFile=/run/nslcd/nslcd.pid +ExecStart=/usr/sbin/nslcd +RestartSec=10s +Restart=on-failure + +[Install] +WantedBy=multi-user.target diff --git a/SOURCES/nslcd.tmpfiles b/SOURCES/nslcd.tmpfiles new file mode 100644 index 0000000..4953cf6 --- /dev/null +++ b/SOURCES/nslcd.tmpfiles @@ -0,0 +1,2 @@ +# nslcd needs a directory in /run to store its pid file and socket +d /run/nslcd 0775 nslcd root diff --git a/SOURCES/nss-pam-ldapd-0.9.9.tar.gz.sig b/SOURCES/nss-pam-ldapd-0.9.9.tar.gz.sig new file mode 100644 index 0000000000000000000000000000000000000000..0113179ebe1bc5d362a047e5f9637699275d8f65 GIT binary patch literal 591 zcmV-V0b!1!)q8XQK9v{R#m)iW4bn&zwuxIhHvfBFy3aIL@I z_zQcj1i8-b_zLiaJRAJIlbmX)n*h(Xa+&<6x| zRex^y1w?(}{n04Zc=JnfpMntp!k!*ugv`wf6^8bse8VCk4|K$P+egY1XT z?Q;IHIh%#cK(2)7M^r<6*L22ExzUY@it);l{H}>%eI2gUL)8hjFCuG~*;qS3VfrQa z>QW_jp9~8heUFN0GMW`q6)NKKws5dqhxeiao;HE#jpZX*|2bu3`mF7ZG!O)!%cg zyN+@_iZeL+F4=o?_h|^6{Z(No7r~&d%O2sISiB /dev/null || \ +/usr/sbin/groupadd -r -g 55 ldap +getent passwd nslcd > /dev/null || \ +/usr/sbin/useradd -r -g ldap -c 'LDAP Client User' \ + -u 65 -d / -s /sbin/nologin nslcd 2> /dev/null || : + +%post +# The usual stuff. +/sbin/ldconfig +%systemd_post nslcd.service + +%preun +%systemd_preun nslcd.service + +%postun +/sbin/ldconfig +%systemd_postun_with_restart nslcd.service + +%changelog +* Mon Dec 6 2021 Tomas Halman - 0.9.9-5 +- Resolves: rhbz#2028914 - nslcd prints only 200 characters in error message + +* Mon Sep 20 2021 Tomas Halman - 0.9.9-4 +- moving temp files from /var/run to /run +- Resolves: rhbz#1969826 - tmpfiles snippet needs updated path for + nss-pam-ldapd + +* Wed May 30 2018 Jakub Hrozek - 0.9.9-3 +- Also change the pemissions on tmpfiles +- Related: rhbz#1583211 - nslcd, the local LDAP daemon, fails to start + with SELinux enabled + +* Wed May 30 2018 Jakub Hrozek - 0.9.9-2 +- Apply a patch by Lukas Slebodnik to allow root to write to the + /var/run/nslcd directory +- Resolves: rhbz#1583211 - nslcd, the local LDAP daemon, fails to start + with SELinux enabled + +* Sun Apr 1 2018 Jakub Hrozek - 0.9.9-1 +- Upgrade to the latest upstream + - Disable the python utilities + - Don't bother with failing pylint test as we don't ship the python + utilities +- Drop unused validname and exitcode patches, port strtoid overflow + patch + +* Sat Mar 31 2018 Jakub Hrozek - 0.8.14-12 +- Get rid of all conditions that are always true for both EPEL-7 and Fedora + as it's quite unlikely we'd use this specfile on EPEL-6 +- Remove the sysvinit script and all the scriptlets around it +- Unconditionally use systemd scriptlet macros and systemd_requires +- Unconditionally build the PAM module as the PADL module is long dead +- Remove the auto-migration of settings from nss_ldap as it's been + long gone from Fedora +- Don't check /etc/sysconfig/authconfig as authconfig is on its way + out from Fedora +- Use only spaces, not tabs, to stop my editor from looking like a + Christmas tree +- Remove the obsolete Group stanza +- Make nscd Recommended, not Required + +* Thu Feb 08 2018 Fedora Release Engineering - 0.8.14-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 0.8.14-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.8.14-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Feb 8 2017 Jakub Hrozek 0.8.14-8 +- Apply a patch from Stanislav Moravec to fix nslcd return code + +* Tue Mar 29 2016 Nalin Dahyabhai 0.8.14-7 +- move the packaged tmpfiles.d file from /etc/tmpfiles.d to %%{_tmpfilesdir}, + per heads-up from Ville Skyttä on devel@ + +* Thu Feb 04 2016 Fedora Release Engineering - 0.8.14-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 0.8.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Aug 17 2014 Fedora Release Engineering - 0.8.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.8.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 07 2014 Nalin Dahyabhai 0.8.14-2 +- where we check for USELDAP=yes in /etc/sysconfig/authconfig as an indication + of nss_ldap being in use, to decide whether to enable the nslcd service or + not, also check for USELDAPAUTH=yes, which indicates pam_ldap is being used + +* Sat Oct 05 2013 Jakub Hrozek 0.8.14-1 +- New upstream release 0.8.14 +- Remove upstreamed patches + +* Sat Oct 05 2013 Jakub Hrozek 0.8.13-4 +- Backport fixes for #1003011 + +* Sat Oct 05 2013 Jakub Hrozek 0.8.13-3 +- Build with _hardened_build macro + +* Sat Aug 03 2013 Fedora Release Engineering - 0.8.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon May 6 2013 Nalin Dahyabhai 0.8.13-1 +- update to 0.8.13 +- correct a syntax error in the fix that was added for #832706 + +* Tue Apr 30 2013 Nalin Dahyabhai 0.8.12-4 +- in %%post, attempt to rewrite any instances of "map group uniqueMember ..." + to be "map group member ..." in nslcd.conf, as the attribute name changed + in 0.8.4 (via freeipa ticket #3589) + +* Thu Feb 14 2013 Fedora Release Engineering - 0.8.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Jan 18 2013 Nalin Dahyabhai 0.8.12-2 +- drop local patch to make the client flush some more read buffers + +* Fri Jan 18 2013 Nalin Dahyabhai 0.8.12-1 +- update to 0.8.12 (#846793) +- make building pam_ldap conditional on the targeted release +- add "After=named.service dirsrv.target slapd.service" to nslcd.service, + to make sure that nslcd is started after them if they're to be started + on the local system (#832706) +- alter the versioned Obsoletes: on pam_ldap to include the F18 package +- use %%{_unitdir} when deciding where to put systemd configuration, based + on patch from Václav Pavlín (#850232) +- use new systemd macros for scriptlet hooks, when available, based on + patch from Václav Pavlín (#850232) + +* Sun Sep 09 2012 Jakub Hrozek 0.7.17-1 +- new upstream release 0.7.17 + +* Sun Aug 05 2012 Jakub Hrozek - 0.7.16-5 +- Obsolete PADL's nss_ldap + +* Sat Aug 04 2012 Jakub Hrozek - 0.7.16-4 +- Build the PAM module, obsoletes PADL's pam-ldap (#856006) + +* Fri Jul 20 2012 Fedora Release Engineering - 0.7.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon May 14 2012 Jakub Hrozek 0.7.16-2 +- backport upstream revision r1659 related to broken pipe when + requesting a large group +- use grep -E instead of egrep to avoid rpmlint warnings + +* Sat Apr 28 2012 Jakub Hrozek 0.7.16-1 +- new upstream release 0.7.16 + +* Thu Mar 15 2012 Jakub Hrozek 0.7.15-2 +- Do not print "Broken Pipe" error message when requesting a large group + +* Fri Mar 9 2012 Jakub Hrozek 0.7.15-1 +- new upstream release 0.7.15 + +* Fri Jan 13 2012 Fedora Release Engineering - 0.7.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Dec 16 2011 Jakub Hrozek 0.7.14-2 +- Do not overflow large UID/GID values on 32bit architectures + +* Mon Nov 28 2011 Nalin Dahyabhai +- use the same conditional test for deciding when to create the .so symlink as + we do later on for deciding when to include it in the package (#757004) + +* Fri Sep 23 2011 Jakub Hrozek 0.7.14-1 +- new upstream release 0.7.14 +- obsoletes nss-pam-ldapd-0.7.x-buffers.patch + +* Wed Aug 24 2011 Nalin Dahyabhai 0.7.13-8 +- include backported enhancement to take URIs in the form "dns:DOMAIN" in + addition to the already-implemented "dns" (#730309) + +* Thu Jul 14 2011 Nalin Dahyabhai 0.7.13-7 +- switch to only munging the contents of /etc/nslcd.conf on the very first + install (#706454) +- make sure that we have enough space to parse any valid GID value when + parsing a user's primary GID (#716822) +- backport support for the "validnames" option from SVN and use it to allow + parentheses characters by modifying the default setting (#690870), then + modify the default again to also allow shorter and shorter names to pass + muster (#706860) + +* Wed Jul 13 2011 Nalin Dahyabhai 0.7.13-6 +- convert to systemd-native startup (#716997) + +* Mon Jun 13 2011 Nalin Dahyabhai 0.7.13-5 +- change the file path Requires: we have for pam_ldap into a package name + Requires: (#601931) + +* Wed Mar 30 2011 Nalin Dahyabhai 0.7.13-4 +- tag nslcd.conf with %%verify(not md5 size mtime), since we always tweak + it in %%post (#692225) + +* Tue Mar 1 2011 Nalin Dahyabhai 0.7.13-3 +- add a tmpfiles configuration to ensure that /var/run/nslcd is created when + /var/run is completely empty at boot (#656643) + +* Tue Feb 08 2011 Fedora Release Engineering - 0.7.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Dec 13 2010 Nalin Dahyabhai 0.7.13-1 +- update to 0.7.13 + +* Fri Oct 29 2010 Nalin Dahyabhai 0.7.12-1 +- update to 0.7.12 + +* Fri Oct 15 2010 Nalin Dahyabhai 0.7.11-1 +- update to 0.7.11 + +* Wed Sep 29 2010 jkeating - 0.7.10-2 +- Rebuilt for gcc bug 634757 + +* Fri Sep 24 2010 Nalin Dahyabhai 0.7.10-1 +- update to 0.7.10 + +* Thu Sep 23 2010 Nalin Dahyabhai 0.7.9-2 +- when creating /var/run/nslcd in the buildroot, specify that 0755 is a + permissions value and not another directory name (#636880) + +* Mon Aug 30 2010 Nalin Dahyabhai 0.7.9-1 +- update to 0.7.9 + +* Wed Aug 18 2010 Nalin Dahyabhai 0.7.8-1 +- update to 0.7.8 + +* Wed Jul 7 2010 Nalin Dahyabhai 0.7.7-1 +- update to 0.7.7 + +* Mon Jun 28 2010 Nalin Dahyabhai 0.7.6-3 +- don't accidentally set multiple 'gid' settings in nslcd.conf, and try to + clean up after older versions of this package that did (#608314) + +* Thu May 27 2010 Nalin Dahyabhai 0.7.6-2 +- make inclusion of the .so symlink conditional on being on a sufficiently- + new Fedora where pam_ldap isn't part of the nss_ldap package, so having + this package conflict with nss_ldap doesn't require that pam_ldap be + removed (#596691) + +* Thu May 27 2010 Nalin Dahyabhai 0.7.6-1 +- update to 0.7.6 + +* Mon May 17 2010 Nalin Dahyabhai 0.7.5-3 +- switch to the upstream patch for #592411 + +* Fri May 14 2010 Nalin Dahyabhai 0.7.5-2 +- don't return an uninitialized buffer as the value for an optional attribute + that isn't present in the directory server entry (#592411) + +* Fri May 14 2010 Nalin Dahyabhai 0.7.5-1 +- update to 0.7.5 + +* Fri May 14 2010 Nalin Dahyabhai 0.7.4-1 +- update to 0.7.4 +- stop trying to migrate retry timeout parameters from old ldap.conf files +- add an explicit requires: on nscd to make sure it's at least available on + systems that are using nss-pam-ldapd; otherwise it's usually optional + +* Tue Mar 23 2010 Nalin Dahyabhai 0.7.3-1 +- update to 0.7.3 + +* Thu Feb 25 2010 Nalin Dahyabhai 0.7.2-2 +- bump release for post-review commit + +* Thu Feb 25 2010 Nalin Dahyabhai 0.7.2-1 +- add comments about why we have a .so link at all, and not a -devel subpackage + +* Wed Jan 13 2010 Nalin Dahyabhai +- obsolete/provides nss-ldapd +- import configuration from nss-ldapd.conf, too + +* Tue Jan 12 2010 Nalin Dahyabhai +- rename to nss-pam-ldapd +- also check for import settings in /etc/nss_ldap.conf and /etc/pam_ldap.conf + +* Thu Sep 24 2009 Nalin Dahyabhai 0.6.11-2 +- rebuild + +* Wed Sep 16 2009 Nalin Dahyabhai +- apply Mitchell Berger's patch to clean up the init script, use %%{_initddir}, + and correct the %%post so that it only thinks about turning on nslcd when + we're first being installed (#522947) +- tell status() where the pidfile is when the init script is called for that + +* Tue Sep 8 2009 Nalin Dahyabhai +- fix typo in a comment, capitalize the full name for "LDAP Client User" (more + from #516049) + +* Wed Sep 2 2009 Nalin Dahyabhai 0.6.11-1 +- update to 0.6.11 + +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jun 18 2009 Nalin Dahyabhai 0.6.10-3 +- update URL: and Source: + +* Mon Jun 15 2009 Nalin Dahyabhai 0.6.10-2 +- add and own /var/run/nslcd +- convert hosts to uri during migration + +* Thu Jun 11 2009 Nalin Dahyabhai 0.6.10-1 +- update to 0.6.10 + +* Fri Apr 17 2009 Nalin Dahyabhai 0.6.8-1 +- bump release number to 1 (part of #491767) +- fix which group we check for during %%pre (part of #491767) + +* Tue Mar 24 2009 Nalin Dahyabhai +- require chkconfig by package rather than path (Jussi Lehtola, part of #491767) + +* Mon Mar 23 2009 Nalin Dahyabhai 0.6.8-0.1 +- update to 0.6.8 + +* Mon Mar 23 2009 Nalin Dahyabhai 0.6.7-0.1 +- start using a dedicated user + +* Wed Mar 18 2009 Nalin Dahyabhai 0.6.7-0.0 +- initial package (#445965)