- Add in the deferred syslog patch. This fixes a hung automounter issue

related to unsafe calls to syslog in signal handler context.
This commit is contained in:
Jeffrey E. Moyer 2005-05-04 19:31:39 +00:00
parent 8e372a2914
commit 81485c5e95

View File

@ -4,7 +4,7 @@
Summary: A tool for automatically mounting and unmounting filesystems.
Name: autofs
%define version 4.1.4
%define release 7
%define release 8
Version: %{version}
Release: %{release}
Epoch: 1
@ -21,6 +21,7 @@ Patch7: autofs-4.1.4-check-nsswitch-submount.patch
Patch8: autofs-4.1.3-alt-master-ldap.patch
Patch9: autofs-4.1.4-check-is-multi.patch
Patch10: autofs-4.1.4-cache-update-race-fix.patch
Patch11: autofs-4.1.4-deferred-syslog.patch
Buildroot: /var/tmp/autofs-tmp
BuildPrereq: autoconf, hesiod-devel, openldap-devel, perl
@ -70,6 +71,7 @@ echo %{version}-%{release} > .version
%patch8 -p1
%patch9 -p1
%patch10 -p1
%patch11 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -123,6 +125,10 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Wed May 4 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-8
- Add in the deferred syslog patch. This fixes a hung automounter issue
related to unsafe calls to syslog in signal handler context.
* Tue May 3 2005 Jeff Moyer <jmoyer@redhat.com> - 1:4.1.4-7
- I reversed the checking for multimount entries, breaking those configs!
This update puts the code back the way it was before I broke it.