Summary: NFS client utils
Name: nfs-utils
Version: 2.3.1
Release: 1%{?dist}
License: GPLv2+
URL: http://sourceforge.net/projects/nfs
Group: Applications/Nfs-utils-client
Source0: http://downloads.sourceforge.net/nfs/%{name}-%{version}.tar.xz
%define sha1 nfs-utils=5eac1882041ce3ebbe98e16aeaec77ec7da4d935
Source1: nfs-client.service
Source2: nfs-client.target
Source3: rpc-statd.service
Source4: rpc-statd-notify.service
Source5: nfs-utils.defaults
Source6: nfs-server.service
Source7: nfs-mountd.service
Vendor: VMware, Inc.
Distribution: Photon
BuildRequires: libtool
BuildRequires: krb5-devel
BuildRequires: libcap-devel
BuildRequires: libtirpc-devel
BuildRequires: python3-devel
BuildRequires: libevent-devel
BuildRequires: device-mapper-devel
BuildRequires: systemd-devel
BuildRequires: keyutils-devel
BuildRequires: sqlite-devel
BuildRequires: libgssglue-devel
BuildRequires: librpcsecgss-devel
BuildRequires: libnfsidmap-devel
BuildRequires: e2fsprogs-devel
Requires: libtirpc
Requires: rpcbind
Requires: shadow
Requires: python3-libs
Requires(pre): /usr/sbin/useradd /usr/sbin/groupadd
Requires(postun):/usr/sbin/userdel /usr/sbin/groupdel
%description
The nfs-utils package contains simple nfs client service
%prep
%setup -q -n %{name}-%{version}
#not prevent statd to start
sed -i "/daemon_init/s:\!::" utils/statd/statd.c
sed '/unistd.h/a#include <stdint.h>' -i support/nsm/rpc.c
find . -iname "*.py" | xargs -I file sed -i '1s/python/python3/g' file
%build
./configure --prefix=%{_prefix} \
--sysconfdir=%{_sysconfdir} \
--enable-libmount-mount \
--without-tcp-wrappers \
--enable-gss \
--enable-nfsv4 \
--disable-static
make
%install
make DESTDIR=%{buildroot} install
install -v -m644 utils/mount/nfsmount.conf /etc/nfsmount.conf
mkdir -p %{buildroot}/lib/systemd/system/
mkdir -p %{buildroot}/etc/default
mkdir -p %{buildroot}/etc/export.d
mkdir -p %{buildroot}/var/lib/nfs/v4recovery
touch %{buildroot}/etc/exports
install -m644 %{SOURCE1} %{buildroot}/lib/systemd/system/
install -m644 %{SOURCE2} %{buildroot}/lib/systemd/system/
install -m644 %{SOURCE3} %{buildroot}/lib/systemd/system/
install -m644 %{SOURCE4} %{buildroot}/lib/systemd/system/
install -m644 %{SOURCE5} %{buildroot}/etc/default/nfs-utils
install -m644 %{SOURCE6} %{buildroot}/lib/systemd/system/
install -m644 %{SOURCE7} %{buildroot}/lib/systemd/system/
install -m644 systemd/proc-fs-nfsd.mount %{buildroot}/lib/systemd/system/
install -m644 systemd/nfs-idmapd.service %{buildroot}/lib/systemd/system/
install -m644 systemd/rpc_pipefs.target %{buildroot}/lib/systemd/system/
install -m644 systemd/var-lib-nfs-rpc_pipefs.mount %{buildroot}/lib/systemd/system/
install -m644 systemd/rpc-svcgssd.service %{buildroot}/lib/systemd/system/
find %{buildroot}/%{_libdir} -name '*.la' -delete
install -vdm755 %{buildroot}/usr/lib/systemd/system-preset
echo "disable nfs-server.service" > %{buildroot}/usr/lib/systemd/system-preset/50-nfs-server.preset
%check
#ignore test that might require additional setup
sed -i '/check_root/i \
exit 77' tests/t0001-statd-basic-mon-unmon.sh
make check
%pre
if ! getent group nobody >/dev/null; then
groupadd -r nobody
fi
if ! getent passwd nobody >/dev/null; then
useradd -g named -s /bin/false -M -r nobody
fi
%post
/sbin/ldconfig
%systemd_post nfs-server.service
%preun
%systemd_preun nfs-server.service
%postun
/sbin/ldconfig
%systemd_postun_with_restart nfs-server.service
%files
%defattr(-,root,root)
%{_datadir}/*
/sbin/*
%{_sbindir}/*
%{_sharedstatedir}/*
/etc/default/nfs-utils
/etc/exports
/lib/systemd/system/*
%{_libdir}/libnfsidmap.so.*
%{_libdir}/libnfsidmap/nsswitch.so
%{_libdir}/libnfsidmap/static.so
%{_libdir}/systemd/system-preset/50-nfs-server.preset
%{_includedir}/*
%{_libdir}/libnfsidmap.so
%{_libdir}/pkgconfig/libnfsidmap.pc
%changelog
* Fri Jan 26 2018 Xiaolin Li <xiaolinl@vmware.com> 2.3.1-1
- Update to 2.3.1 and enable nfsv4
* Tue Oct 10 2017 Alexey Makhalov <amakhalov@vmware.com> 2.1.1-7
- No direct toybox dependency, shadow depends on toybox
* Mon Sep 18 2017 Alexey Makhalov <amakhalov@vmware.com> 2.1.1-6
- Requires shadow or toybox
* Thu Aug 24 2017 Alexey Makhalov <amakhalov@vmware.com> 2.1.1-5
- Fix compilation issue for glibc-2.26
* Wed Aug 16 2017 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 2.1.1-4
- Add check and ignore test that fails.
* Tue Aug 8 2017 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 2.1.1-3
- Alter nfs-server and nfs-mountd service files to use
- environment file and port opts.
* Tue May 23 2017 Xiaolin Li <xiaolinl@vmware.com> 2.1.1-2
- Build with python3.
* Sat Apr 15 2017 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 2.1.1-1
- Update to 2.1.1
* Fri Dec 16 2016 Nick Shi <nshi@vmware.com> 1.3.3-6
- Requires rpcbind.socket upon starting rpc-statd service (bug 1668405)
* Mon Nov 21 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 1.3.3-5
- add shadow to requires
* Wed Jul 27 2016 Divya Thaluru <dthaluru@vmware.com> 1.3.3-4
- Removed packaging of debug files
* Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 1.3.3-3
- GA - Bump release of all rpms
* Thu Apr 28 2016 Xiaolin Li <xiaolinl@vmware.com> 1.3.3-2
- Add nfs-server.service to rpm.
* Thu Jan 21 2016 Xiaolin Li <xiaolinl@vmware.com> 1.3.3-1
- Updated to version 1.3.3
* Tue Dec 8 2015 Divya Thaluru <dthaluru@vmware.com> 1.3.2-2
- Adding systemd service files
* Tue Jul 14 2015 Rongrong Qiu <rqiu@vmware.com> 1.3.2-1
- Initial build. First version