- check base of offset mount tree is not a mount before umounting its

offsets.
- fix replicated mount parse for case where last name in list fails lookup.
- correct indirect mount expire broken by the wildcard lookup fix.
- fix up multi-mount handling when wildcard map entry present.
This commit is contained in:
ikent 2006-06-07 06:42:50 +00:00
parent fb9b6ca5bf
commit 5b1ad946d4

View File

@ -4,7 +4,7 @@
Summary: A tool for automatically mounting and unmounting filesystems.
Name: autofs
%define version 5.0.0_beta4
%define release 3
%define release 4
Version: %{version}
Release: %{release}
Epoch: 1
@ -15,6 +15,11 @@ Patch0: autofs-5.0.0_beta4-dontstrip-typo.patch
Patch1: autofs-5.0.0_beta4-v4-dir-cleanup.patch
Patch2: autofs-5.0.0_beta4-master-map-update.patch
Patch3: autofs-5.0.0_beta4-wrong-conf-names.patch
Patch4: autofs-5.0.0_beta4-offset-check-base-mounted.patch
Patch5: autofs-5.0.0_beta4-replicated-parse-lookup-fix.patch
Patch6: autofs-5.0.0_beta4-expire-base-mount-fix.patch
Patch7: autofs-5.0.0_beta4-wildcard-handling.patch
Patch8: autofs-5.0.0_beta4-master_parse-redeclare.patch
Buildroot: /var/tmp/autofs-tmp
BuildPrereq: autoconf, hesiod-devel, openldap-devel, bison, flex
Prereq: chkconfig
@ -57,6 +62,11 @@ echo %{version}-%{release} > .version
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch6 -p1
%patch7 -p1
%patch8 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -112,6 +122,14 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Wed Jun 7 2006 Ian Kent <ikent@redhat.com> - 5.0.0_beta4-4
- check base of offset mount tree is not a mount before umounting
its offsets.
- fix replicated mount parse for case where last name in list
fails lookup.
- correct indirect mount expire broken by the wildcard lookup fix.
- fix up multi-mount handling when wildcard map entry present.
* Mon Jun 5 2006 Ian Kent <ikent@redhat.com> - 5.0.0_beta4-3
- correct config names in default.c (jpro@bas.ac.uk).