- expire individual submounts.

- add ino_index locking.
- fix nested submount expiring away when pwd is base of submount.
- more expire re-work to cope better with shutdown following cthon tests.
- allow hostname to start with numeric when validating.
This commit is contained in:
ikent 2006-08-16 07:27:49 +00:00
parent 06d75488d6
commit 41a15e94bf

View File

@ -4,7 +4,7 @@
Summary: A tool for automatically mounting and unmounting filesystems.
Name: autofs
%define version 5.0.1
%define release 0.rc1.14
%define release 0.rc1.15
Version: %{version}
Release: %{release}
Epoch: 1
@ -35,6 +35,12 @@ Patch21: autofs-5.0.1-rc1-verbose-messages.patch
Patch22: autofs-5.0.1-rc1-expire-multi-correction.patch
Patch23: autofs-5.0.1-rc1-sloppyopt-nfs.patch
Patch24: autofs-5.0.1-rc1-release-notes-spelling.patch
Patch25: autofs-5.0.1-rc1-expire-individual-submounts.patch
Patch26: autofs-5.0.1-rc1-ino_index-locking.patch
Patch27: autofs-5.0.1-rc1-check-offset-mounts-before-umount.patch
Patch28: autofs-5.0.1-rc1-premature-submount-expire.patch
Patch29: autofs-5.0.1-rc1-more-expire-rework.patch
Patch30: autofs-5.0.1-rc1-allow-initial-numeric-in-hostname.patch
Buildroot: /var/tmp/autofs-tmp
BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel
Prereq: chkconfig
@ -98,6 +104,12 @@ echo %{version}-%{release} > .version
%patch22 -p1
%patch23 -p1
%patch24 -p1
%patch25 -p1
%patch26 -p1
%patch27 -p1
%patch28 -p1
%patch29 -p1
%patch30 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -154,6 +166,13 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Thu Aug 16 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc1.15
- expire individual submounts.
- add ino_index locking.
- fix nested submount expiring away when pwd is base of submount.
- more expire re-work to cope better with shutdown following cthon tests.
- allow hostname to start with numeric when validating.
* Thu Aug 7 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc1.14
- remove SIGCHLD handler because it is no longer needed and was
causing expire problems.