2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2008-01-31 21:40:18 +05:30
|
|
|
|
|
|
|
description="Update /etc/mtab to match what the kernel knows about"
|
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
2017-03-16 20:46:39 +05:30
|
|
|
after clock
|
2017-11-15 00:47:01 +05:30
|
|
|
before localmount
|
2008-01-31 21:40:18 +05:30
|
|
|
need root
|
2015-04-29 06:33:49 +05:30
|
|
|
keyword -prefix -systemd-nspawn
|
2008-01-31 21:40:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2015-04-26 02:07:52 +05:30
|
|
|
local rc=0
|
2008-01-31 21:40:18 +05:30
|
|
|
ebegin "Updating /etc/mtab"
|
2015-10-14 21:11:14 +05:30
|
|
|
if ! checkpath -W /etc; then
|
2015-04-26 02:07:52 +05:30
|
|
|
rc=1
|
2015-10-14 21:11:14 +05:30
|
|
|
elif ! yesno ${mtab_is_file:-no}; then
|
2015-10-15 04:13:12 +05:30
|
|
|
[ ! -L /etc/mtab ] && [ -f /etc/mtab ] &&
|
2015-10-14 21:11:14 +05:30
|
|
|
ewarn "Removing /etc/mtab file"
|
|
|
|
einfo "Creating mtab symbolic link"
|
2015-04-26 02:07:52 +05:30
|
|
|
ln -snf /proc/self/mounts /etc/mtab
|
|
|
|
else
|
2017-11-15 01:41:57 +05:30
|
|
|
ewarn "The ${RC_SVCNAME} service will be removed in the future."
|
|
|
|
ewarn "Please change the mtab_is_file setting to no and run"
|
|
|
|
ewarn "# rc-service mtab restart"
|
|
|
|
ewarn "to create the mtab symbolic link."
|
2015-10-14 21:11:14 +05:30
|
|
|
[ -L /etc/mtab ] && ewarn "Removing /etc/mtab symbolic link"
|
|
|
|
rm -f /etc/mtab
|
|
|
|
einfo "Creating mtab file"
|
2015-04-26 02:07:52 +05:30
|
|
|
# With / as tmpfs we cannot umount -at tmpfs in localmount as that
|
|
|
|
# makes / readonly and dismounts all tmpfs even if in use which is
|
|
|
|
# not good. Luckily, umount uses /etc/mtab instead of /proc/mounts
|
|
|
|
# which allows this hack to work.
|
|
|
|
grep -v "^[! ]* / tmpfs " /proc/mounts > /etc/mtab
|
2008-01-31 21:40:18 +05:30
|
|
|
|
2015-04-26 02:07:52 +05:30
|
|
|
# Remove stale backups
|
|
|
|
rm -f /etc/mtab~ /etc/mtab~~
|
|
|
|
fi
|
|
|
|
eend $rc "/etc is not writable; unable to create /etc/mtab"
|
|
|
|
return 0
|
2008-01-31 21:40:18 +05:30
|
|
|
}
|