- make double quote handing consistent (at least as much as we can).

- fix handling of trailing white space in wildcard lookup (forward port bz
    199720).
- check fqdn of each interface when matching export access list (bz
    213700).
- Resolves: rhbz#199720 rhbz#213700
This commit is contained in:
ikent 2007-01-29 06:27:31 +00:00
parent fa4984e3f1
commit bbb8884912

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.rc3.11
%define release 0.rc3.13
Version: %{version}
Release: %{release}
Epoch: 1
@ -16,6 +16,9 @@ Patch2: autofs-5.0.1-rc3-remove-rpath-link-option.patch
Patch3: autofs-5.0.1-rc3-nsswitch-ignore-winbind.patch
Patch4: autofs-5.0.1-rc3-correct-expire-check.patch
Patch5: autofs-5.0.1-rc3-correct-offset-mount-busy-check.patch
Patch6: autofs-5.0.1-rc3-consistent-dquote-handling.patch
Patch7: autofs-5.0.1-rc3-trailing-whitespace.patch
Patch8: autofs-5.0.1-rc3-match-export-fqdn.patch
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel
Conflicts: kernel < 2.6.17
@ -63,6 +66,9 @@ echo %{version}-%{release} > .version
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch6 -p1
%patch7 -p1
%patch8 -p1
%build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -119,6 +125,11 @@ exit 0
%{_libdir}/autofs/*
%changelog
* Mon Jan 29 2007 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc3.13
- make double quote handing consistent (at least as much as we can).
- fix handling of trailing white space in wildcard lookup (forward port bz 199720).
- check fqdn of each interface when matching export access list (bz 213700).
* Thu Jan 18 2007 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc3.11
- correct check for busy offset mounts before offset umount (bz 222872).