diff --git a/README.md b/README.md index 1e5f67e..c1bff49 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # autofs +The Autofs package contains userspace tools that work with the kernel to mount and un-mount removable file systems. The primary use is to mount external network file systems like NFS (see NFS Utilities-1.2.7) or Samba (see Samba-3.6.12) on demand. +It may also be useful for allowing users to mount floppies, cdroms and other removable storage devices without requiring the system administrator to mount the devices. + diff --git a/autofs.spec b/autofs.spec new file mode 100644 index 0000000..9d46a38 --- /dev/null +++ b/autofs.spec @@ -0,0 +1,74 @@ +Name: autofs +Version: 5.0.9 +Release: 1mamba +Summary: Userspace tools that work with the kernel to mount and un-mount removable file systems +Group: System/Kernel and Hardware +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.kernel.org +Source: http://ftp.kernel.org/pub/linux/daemons/autofs/v5/autofs-%{version}.tar.xz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libe2fs-devel +BuildRequires: libkeyutils-devel +BuildRequires: libkrb5-devel +BuildRequires: libopenldap-devel +BuildRequires: libsasl-devel +BuildRequires: libxml2-devel +BuildRequires: libz-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The Autofs package contains userspace tools that work with the kernel to mount and un-mount removable file systems. The primary use is to mount external network file systems like NFS (see NFS Utilities-1.2.7) or Samba (see Samba-3.6.12) on demand. +It may also be useful for allowing users to mount floppies, cdroms and other removable storage devices without requiring the system administrator to mount the devices. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%config(noreplace) %{_sysconfdir}/auto.master +%config(noreplace) %{_sysconfdir}/auto.misc +%config(noreplace) %{_sysconfdir}/auto.net +%config(noreplace) %{_sysconfdir}/auto.smb +%config(noreplace) %{_sysconfdir}/autofs_ldap_auth.conf +%{_sysconfdir}/init.d/autofs +%{_sysconfdir}/sysconfig/autofs +%{_sbindir}/automount +%dir %{_libdir}/autofs +%{_libdir}/autofs/lookup_*.so +%{_libdir}/autofs/mount_*.so +%{_libdir}/autofs/parse_sun.so +%{_mandir}/man5/auto.master.5.gz +%{_mandir}/man5/autofs.5.gz +%{_mandir}/man5/autofs_ldap_auth.conf.5.gz +%{_mandir}/man8/autofs.8.gz +%{_mandir}/man8/automount.8.gz +%doc COPYING CREDITS +#%doc README README.active-restart README.changer README.ncpfs README.replicated-server README.smbfs README.v5.release + +%changelog +* Sat Mar 29 2014 Automatic Build System 5.0.9-1mamba +- automatic version update by autodist + +* Thu Oct 24 2013 Automatic Build System 5.0.8-1mamba +- automatic update by autodist + +* Thu Jun 20 2013 Silvan Calarco 5.0.7-1mamba +- package created by silvan using the webbuild interface