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.
|
2008-01-31 21:40:18 +05:30
|
|
|
|
|
|
|
description="Mount the root fs read/write"
|
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need fsck
|
2015-04-29 06:33:49 +05:30
|
|
|
keyword -jail -openvz -prefix -systemd-nspawn -vserver -lxc
|
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
|
|
|
|
case "${mountpoint}" in
|
|
|
|
/)
|
|
|
|
;;
|
|
|
|
/*)
|
2012-02-10 20:53:13 +05:30
|
|
|
mountinfo -q "${mountpoint}" && \
|
|
|
|
fstabinfo --remount "${mountpoint}"
|
2012-02-04 01:47:18 +05:30
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
eend 0
|
2008-01-31 21:40:18 +05:30
|
|
|
}
|