2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Mounts disks and swap according to /etc/fstab."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2008-01-31 21:40:18 +05:30
|
|
|
need fsck
|
2008-03-05 14:10:17 +05:30
|
|
|
use lvm modules mtab
|
2010-12-12 03:55:46 +05:30
|
|
|
after lvm modules
|
2013-09-26 23:35:40 +05:30
|
|
|
keyword -jail -prefix -vserver -lxc
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
# Mount local filesystems in /etc/fstab.
|
2010-12-01 03:10:44 +05:30
|
|
|
local types="noproc" x= no_netdev=
|
2011-07-06 01:03:21 +05:30
|
|
|
for x in $net_fs_list $extra_net_fs_list; do
|
2013-03-23 01:20:27 +05:30
|
|
|
types="${types},no${x}"
|
2007-04-05 16:48:42 +05:30
|
|
|
done
|
|
|
|
|
2010-12-01 03:10:44 +05:30
|
|
|
if [ "$RC_UNAME" = Linux ]; then
|
|
|
|
no_netdev="-O no_netdev"
|
2012-11-30 23:35:26 +05:30
|
|
|
if mountinfo -q /usr; then
|
2012-12-17 07:30:01 +05:30
|
|
|
touch "$RC_SVCDIR"/usr_premounted
|
2012-11-29 21:49:20 +05:30
|
|
|
fi
|
2010-12-01 03:10:44 +05:30
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Mounting local filesystems"
|
2010-12-01 03:10:44 +05:30
|
|
|
mount -at "$types" $no_netdev
|
2007-04-05 16:48:42 +05:30
|
|
|
eend $? "Some local filesystem failed to mount"
|
|
|
|
|
|
|
|
# Always return 0 - some local mounts may not be critical for boot
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
stop()
|
|
|
|
{
|
2012-03-26 04:59:37 +05:30
|
|
|
yesno $RC_GOINGDOWN || return 0
|
2007-10-05 19:07:57 +05:30
|
|
|
# We never unmount / or /dev or $RC_SVCDIR
|
2011-09-11 18:42:54 +05:30
|
|
|
|
|
|
|
# Bug 381783
|
2012-12-17 07:30:01 +05:30
|
|
|
local rc_svcdir=$(printf '%s\n' "$RC_SVCDIR" | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g')
|
2011-09-11 18:42:54 +05:30
|
|
|
|
|
|
|
local x= no_umounts_r="/|/dev|/dev/.*|${rc_svcdir}"
|
|
|
|
no_umounts_r="${no_umounts_r}|/bin|/sbin|/lib(32|64)?|/libexec"
|
2007-11-23 17:34:11 +05:30
|
|
|
# RC_NO_UMOUNTS is an env var that can be set by plugins
|
2011-07-07 22:21:39 +05:30
|
|
|
local IFS="$IFS:"
|
2009-04-27 13:21:18 +05:30
|
|
|
for x in $no_umounts $RC_NO_UMOUNTS; do
|
|
|
|
no_umounts_r="$no_umounts_r|$x"
|
2007-04-05 16:48:42 +05:30
|
|
|
done
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ "$RC_UNAME" = Linux ]; then
|
2012-11-29 21:49:20 +05:30
|
|
|
no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*"
|
2012-12-17 07:30:01 +05:30
|
|
|
if [ -e "$rc_svcdir"/usr_premounted ]; then
|
2012-11-29 21:49:20 +05:30
|
|
|
no_umounts_r="$no_umounts_r|/usr"
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2009-04-27 13:21:18 +05:30
|
|
|
no_umounts_r="^($no_umounts_r)$"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Flush all pending disk writes now
|
2013-10-19 02:56:46 +05:30
|
|
|
sync
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2009-05-24 01:08:12 +05:30
|
|
|
. "$RC_LIBEXECDIR"/sh/rc-mount.sh
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2014-10-06 21:45:44 +05:30
|
|
|
if [ "$RC_UNAME" = Linux ] && [ -d /sys/fs/aufs ] ; then
|
|
|
|
#if / is aufs we remount it noxino during shutdown
|
|
|
|
if mountinfo -q -f '^aufs$' / ; then
|
|
|
|
mount -o remount,noxino,rw /
|
|
|
|
sync
|
|
|
|
fi
|
|
|
|
|
|
|
|
local aufs_branch aufs_mount_dir aufs_mount_point aufs_si_dir aufs_si_id
|
|
|
|
for aufs_si_dir in /sys/fs/aufs/*; do
|
|
|
|
aufs_mount_dir=${aufs_si_dir#/sys/fs/aufs/}
|
|
|
|
aufs_si_id="$(printf "%s" $aufs_mount_dir | sed 's/_/=/g')"
|
|
|
|
aufs_mount_point="$(mountinfo -o ${aufs_si_id})"
|
|
|
|
for x in $aufs_si_dir/br[0-9][0-9][0-9]; do
|
|
|
|
aufs_branch=$(sed 's/=.*//g' $x)
|
|
|
|
eindent
|
|
|
|
if ! mount -o "remount,del:$aufs_branch" "$aufs_mount_point" > /dev/null 2>&1; then
|
|
|
|
ewarn "Failed to remove branch $aufs_branch from aufs \
|
|
|
|
$aufs_mount_point"
|
|
|
|
fi
|
|
|
|
eoutdent
|
|
|
|
sync
|
|
|
|
done
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2011-02-14 15:11:08 +05:30
|
|
|
# Umount loop devices
|
|
|
|
einfo "Unmounting loop devices"
|
2007-04-05 16:48:42 +05:30
|
|
|
eindent
|
2009-04-27 13:21:18 +05:30
|
|
|
do_unmount "umount -d" --skip-point-regex "$no_umounts_r" \
|
2007-10-09 21:03:05 +05:30
|
|
|
--node-regex "^/dev/loop"
|
2007-04-05 16:48:42 +05:30
|
|
|
eoutdent
|
|
|
|
|
2007-07-11 22:57:46 +05:30
|
|
|
# Now everything else, except network filesystems as the
|
|
|
|
# network should be down by this point.
|
2007-04-05 16:48:42 +05:30
|
|
|
einfo "Unmounting filesystems"
|
|
|
|
eindent
|
2007-07-11 22:57:46 +05:30
|
|
|
local fs=
|
2011-07-06 01:03:21 +05:30
|
|
|
for x in $net_fs_list $extra_net_fs_list; do
|
2009-04-27 13:21:18 +05:30
|
|
|
fs="$fs${fs:+|}$x"
|
2007-07-11 22:57:46 +05:30
|
|
|
done
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -n "$fs" ] && fs="^($fs)$"
|
|
|
|
do_unmount umount --skip-point-regex "$no_umounts_r" \
|
2011-09-11 18:42:54 +05:30
|
|
|
"${fs:+--skip-fstype-regex}" $fs --nonetdev
|
2007-04-05 16:48:42 +05:30
|
|
|
eoutdent
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|