From c527fd1f14c27855a37f2e8ac5346ce8d940ced2 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Thu, 16 Oct 2014 03:05:19 +0200 Subject: initial commit for Enea Linux 4.0-140929 Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea --- .../initscripts/initscripts-1.0/umountnfs.sh | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 meta/recipes-core/initscripts/initscripts-1.0/umountnfs.sh (limited to 'meta/recipes-core/initscripts/initscripts-1.0/umountnfs.sh') diff --git a/meta/recipes-core/initscripts/initscripts-1.0/umountnfs.sh b/meta/recipes-core/initscripts/initscripts-1.0/umountnfs.sh new file mode 100755 index 0000000000..af075407fd --- /dev/null +++ b/meta/recipes-core/initscripts/initscripts-1.0/umountnfs.sh @@ -0,0 +1,33 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: umountnfs +# Required-Start: +# Required-Stop: umountfs +# Should-Stop: $network $portmap +# Default-Start: +# Default-Stop: 0 6 +# Short-Description: Unmount all network filesystems +### END INIT INFO + +PATH=/sbin:/bin:/usr/sbin:/usr/bin + +# Write a reboot record to /var/log/wtmp before unmounting +halt -w + +echo "Unmounting remote filesystems..." + +test -f /etc/fstab && ( + +# +# Read through fstab line by line and unount network file systems +# +while read device mountpt fstype options +do + if test "$fstype" = nfs || test "$fstype" = smbfs || test "$fstype" = ncpfs || test "$fstype" = cifs + then + umount -f $mountpt + fi +done +) < /etc/fstab + +: exit 0 -- cgit v1.2.3-54-g00ecf