PN: nfs-utils
PV: 1.3.3
PR: r0
PKGV: 1.3.3
PKGR: r0
LICENSE: MIT & GPLv2+ & BSD
DESCRIPTION: The nfs-utils package provides a daemon for the kernel NFS server and related tools.
SUMMARY: userspace utilities for kernel nfs
RDEPENDS_nfs-utils-client: base-files base-passwd bash initscripts-functions rpcbind shadow libwrap (>= 7.6) libtirpc (>= 1.0.1) libevent (>= 2.0.22) util-linux-libmount (>= 2.28.1) libnfsidmap (>= 0.25) glibc (>= linaro-2.23) libcap (>= 2.25)
RRECOMMENDS_nfs-utils-client:  update-rc.d
SECTION: console/network
PKG_nfs-utils-client: nfs-utils-client
FILES_nfs-utils-client: /sbin/*mount.nfs* /usr/sbin/*statd \t\t      /usr/sbin/rpc.idmapd /usr/sbin/sm-notify \t\t      /usr/sbin/showmount /usr/sbin/nfsstat \t\t      /var/lib/nfs \t\t      /etc/nfs-utils.conf \t\t      /etc/nfsmount.conf \t\t      /etc/init.d/nfscommon \t\t      /lib/systemd/system/nfs-statd.service
pkg_postinst_nfs-utils-client: #!/bin/sh\n# Begin section update-rc.d\nif type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-r $D"\n\telse\n\t\tOPT="-s"\n\tfi\n\tupdate-rc.d $OPT nfscommon defaults 19 21\nfi\n# End section update-rc.d\n
pkg_postrm_nfs-utils-client: #!/bin/sh\nif type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-f -r $D"\n\telse\n\t\tOPT="-f"\n\tfi\n\tupdate-rc.d $OPT nfscommon remove\nfi\n
pkg_preinst_nfs-utils-client: #!/bin/sh\nif [ -z "$D" -a -f "/etc/init.d/nfscommon" ]; then\n\t/etc/init.d/nfscommon stop || :\nfi\nif type update-rc.d >/dev/null 2>/dev/null; then\n\tif [ -n "$D" ]; then\n\t\tOPT="-f -r $D"\n\telse\n\t\tOPT="-f"\n\tfi\n\tupdate-rc.d $OPT nfscommon remove\nfi\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "nfs-utils: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "nfs-utils: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "nfs-utils: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "nfs-utils: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "nfs-utils: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "nfs-utils: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "nfs-utils: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "nfs-utils: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "nfs-utils: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "nfs-utils: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT:/tmp/petalinux-yocto/yocto_sdk_full_2017.2/build/tmp/sysroots/x86_64-linux"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM="${GROUPADD_PARAM}"\n\tUSERADD_PARAM="${USERADD_PARAM}"\n\tGROUPMEMS_PARAM="${GROUPMEMS_PARAM}"\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
pkg_prerm_nfs-utils-client: #!/bin/sh\n# Begin section update-rc.d\nif [ -z "$D" -a -x "/etc/init.d/nfscommon" ]; then\n\t/etc/init.d/nfscommon stop || :\nfi\n# End section update-rc.d\n
FILERPROVIDESFLIST_nfs-utils-client: /usr/sbin/rpc.idmapd /usr/sbin/sm-notify /usr/sbin/nfsstat /usr/sbin/rpc.statd /sbin/mount.nfs /usr/sbin/showmount
FILES_INFO: {"/sbin/mount.nfs": 94688, "/sbin/mount.nfs4": 9, "/var/lib/nfs/etab": 0, "/etc/nfs-utils.conf": 1087, "/usr/sbin/rpc.statd": 70024, "/usr/sbin/sm-notify": 45152, "/var/lib/nfs/statd/state": 0, "/usr/sbin/nfsstat": 21952, "/usr/sbin/start-statd": 635, "/var/lib/nfs/rmtab": 0, "/usr/sbin/rpc.idmapd": 32344, "/sbin/umount.nfs": 9, "/sbin/umount.nfs4": 9, "/var/lib/nfs/xtab": 0, "/etc/nfsmount.conf": 3605, "/etc/init.d/nfscommon": 1609, "/usr/sbin/showmount": 15808}
FILERPROVIDES_/usr/sbin/rpc.idmapd_nfs-utils-client: elf(buildid) (= f3fa257e41e3e75d4a9762b76d17205c24aa03ca)
FILERPROVIDES_/usr/sbin/sm-notify_nfs-utils-client: elf(buildid) (= 8a5a481c3edcccc8a332853c203b58fc2c1f6837)
FILERPROVIDES_/usr/sbin/nfsstat_nfs-utils-client: elf(buildid) (= 36731d72ba8a651c62c22285643d5e7d494a7cc1)
FILERPROVIDES_/usr/sbin/rpc.statd_nfs-utils-client: elf(buildid) (= a1d8a64a5d4ba24a2d4b126e831fd45693770268)
FILERPROVIDES_/sbin/mount.nfs_nfs-utils-client: elf(buildid) (= 7f1e925c9cfd677e8f621f79c367555b42152f6f)
FILERPROVIDES_/usr/sbin/showmount_nfs-utils-client: elf(buildid) (= f7d21e1fff108e590efcabd91a46b986f067fcec)
FILERDEPENDSFLIST_nfs-utils-client: /usr/sbin/start-statd /sbin/mount.nfs /usr/sbin/sm-notify /usr/sbin/nfsstat /usr/sbin/rpc.statd /etc/init.d/nfscommon /usr/sbin/rpc.idmapd /usr/sbin/showmount
FILERDEPENDS_/usr/sbin/start-statd_nfs-utils-client: /bin/sh
FILERDEPENDS_/sbin/mount.nfs_nfs-utils-client: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libmount.so.1()(64bit) libmount.so.1(MOUNT_2.19)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) libtirpc.so.3()(64bit) libtirpc.so.3(TIRPC_0.3.0)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/sbin/sm-notify_nfs-utils-client: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libcap.so.2()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) libtirpc.so.3()(64bit) libtirpc.so.3(TIRPC_0.3.0)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/sbin/nfsstat_nfs-utils-client: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/sbin/rpc.statd_nfs-utils-client: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libcap.so.2()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) libtirpc.so.3()(64bit) libtirpc.so.3(TIRPC_0.3.0)(64bit) libwrap.so.0()(64bit) rtld(GNU_HASH)
FILERDEPENDS_/etc/init.d/nfscommon_nfs-utils-client: /bin/sh
FILERDEPENDS_/usr/sbin/rpc.idmapd_nfs-utils-client: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libevent-2.0.so.5()(64bit) libnfsidmap.so.0()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) rtld(GNU_HASH)
FILERDEPENDS_/usr/sbin/showmount_nfs-utils-client: libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.17)(64bit) libtirpc.so.3()(64bit) libtirpc.so.3(TIRPC_0.3.0)(64bit) rtld(GNU_HASH)
PKGSIZE_nfs-utils-client: 286931
