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
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# 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
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# 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="Mount the root fs read/write"
|
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
2017-03-16 20:46:39 +05:30
|
|
|
after clock
|
2008-01-31 21:40:18 +05:30
|
|
|
need fsck
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -jail -lxc -openvz -prefix -systemd-nspawn -vserver
|
2008-01-31 21:40:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2009-02-12 23:42:57 +05:30
|
|
|
case ",$(fstabinfo -o /)," in
|
2012-02-04 01:47:18 +05:30
|
|
|
*,ro,*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Check if the rootfs isn't already writable.
|
|
|
|
if checkpath -W /; then
|
|
|
|
rm -f /fastboot /forcefsck
|
|
|
|
else
|
|
|
|
ebegin "Remounting root filesystem read/write"
|
|
|
|
case "$RC_UNAME" in
|
|
|
|
Linux)
|
|
|
|
mount -n -o remount,rw /
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
mount -u -o rw /
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
eend $? "Root filesystem could not be mounted read/write"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
rm -f /fastboot /forcefsck
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
2009-02-12 23:42:57 +05:30
|
|
|
esac
|
|
|
|
|
2012-02-04 01:47:18 +05:30
|
|
|
ebegin "Remounting filesystems"
|
|
|
|
local mountpoint
|
|
|
|
for mountpoint in $(fstabinfo); do
|
2022-09-03 03:40:56 +05:30
|
|
|
case "${mountpoint}" in
|
|
|
|
/*) # Don't remount swap etc.
|
|
|
|
mountinfo -q "${mountpoint}" && \
|
|
|
|
fstabinfo --remount "${mountpoint}"
|
|
|
|
;;
|
|
|
|
esac
|
2012-02-04 01:47:18 +05:30
|
|
|
done
|
|
|
|
eend 0
|
2008-01-31 21:40:18 +05:30
|
|
|
}
|