From 4dce2a46ca603e244644b58f7e18cf6af37589c3 Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Wed, 28 Aug 2019 21:29:41 +0000 Subject: Wed Aug 28 21:29:41 UTC 2019 a/haveged-1.9.6-x86_64-1.txz: Upgraded. a/sysvinit-scripts-2.1-noarch-27.txz: Rebuilt. rc.6, rc.K: recognize partition type nfs4 Thanks to Yoga the Yogin. ap/gutenprint-5.3.3-x86_64-1.txz: Upgraded. ap/hplip-3.19.8-x86_64-1.txz: Upgraded. ap/man-db-2.8.7-x86_64-1.txz: Upgraded. d/meson-0.51.2-x86_64-1.txz: Upgraded. d/ruby-2.6.4-x86_64-1.txz: Upgraded. n/dovecot-2.3.7.2-x86_64-1.txz: Upgraded. n/php-7.3.9-x86_64-1.txz: Upgraded. This update fixes bugs and a security issue: MBString: Fixed bug #78380 (Oniguruma 6.9.3 fixes CVEs). (CVE-2019-13224) For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13224 (* Security fix *) --- source/a/sysvinit-scripts/scripts/rc.K | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/a/sysvinit-scripts/scripts/rc.K') diff --git a/source/a/sysvinit-scripts/scripts/rc.K b/source/a/sysvinit-scripts/scripts/rc.K index b8ed352da..4ea4b8845 100644 --- a/source/a/sysvinit-scripts/scripts/rc.K +++ b/source/a/sysvinit-scripts/scripts/rc.K @@ -60,7 +60,7 @@ fi # Kill any processes (typically gam) that would otherwise prevent # unmounting NFS volumes: unset FUSER_DELAY -for dir in $(/bin/mount | grep 'type nfs ' | sed -e 's|.* on ||g' | cut -d ' ' -f 1) ; do +for dir in $(/bin/mount | grep -e 'type nfs ' -e 'type nfs4 ' | sed -e 's|.* on ||g' | cut -d ' ' -f 1) ; do echo "Killing processes holding NFS mount $dir open..." # Background this to prevent fuser from also blocking shutdown: /usr/bin/fuser -k -M -m "$dir" & @@ -73,7 +73,7 @@ fi # Unmount any NFS, SMB, or CIFS filesystems: echo "Unmounting remote filesystems:" -/bin/umount -v -a -l -f -r -t nfs,smbfs,cifs | tr -d ' ' | grep successfully | sed "s/:successfullyunmounted/ has been successfully unmounted./g" +/bin/umount -v -a -l -f -r -t nfs,nfs4,smbfs,cifs | tr -d ' ' | grep successfully | sed "s/:successfullyunmounted/ has been successfully unmounted./g" # Shut down PCMCIA devices: if [ -x /etc/rc.d/rc.pcmcia ] ; then -- cgit v1.2.3