summaryrefslogtreecommitdiff
path: root/init.d/root.in
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2014-12-03 10:13:41 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2014-12-03 10:13:41 -0600
commit1267025fb76af18e31b2c7de16606abbb9b87ea3 (patch)
tree8cc3a36b1dd7e1438d05a293cae8eac572126a7c /init.d/root.in
parent30cc3cdb76a66c7c0f89a52db4e5cff77b570e31 (diff)
Diffstat (limited to 'init.d/root.in')
-rw-r--r--init.d/root.in53
1 files changed, 0 insertions, 53 deletions
diff --git a/init.d/root.in b/init.d/root.in
deleted file mode 100644
index 1668368c..00000000
--- a/init.d/root.in
+++ /dev/null
@@ -1,53 +0,0 @@
-#!@SBINDIR@/openrc-run
-# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
-# Released under the 2-clause BSD license.
-
-description="Mount the root fs read/write"
-
-depend()
-{
- need fsck
- keyword -jail -openvz -prefix -vserver -lxc
-}
-
-start()
-{
- case ",$(fstabinfo -o /)," in
- *,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
- ;;
- esac
-
- ebegin "Remounting filesystems"
- local mountpoint
- for mountpoint in $(fstabinfo); do
- case "${mountpoint}" in
- /)
- ;;
- /*)
- mountinfo -q "${mountpoint}" && \
- fstabinfo --remount "${mountpoint}"
- ;;
- esac
- done
- eend 0
-}