summaryrefslogtreecommitdiff
path: root/init.d/mount-ro.in
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-04-27 07:51:18 +0000
committerRoy Marples <roy@marples.name>2009-04-27 07:51:18 +0000
commite70a1429564a8fce5036c351b010a47dbb6c28b7 (patch)
treea1fc0f75a53041771bc9054fdab517ac32b3d79a /init.d/mount-ro.in
parenteaa32c75c9bba7af0ec842d82f56a6862bbc83db (diff)
downloadopenrc-e70a1429564a8fce5036c351b010a47dbb6c28b7.tar.gz
openrc-e70a1429564a8fce5036c351b010a47dbb6c28b7.tar.bz2
openrc-e70a1429564a8fce5036c351b010a47dbb6c28b7.tar.xz
Style.
Diffstat (limited to 'init.d/mount-ro.in')
-rw-r--r--init.d/mount-ro.in24
1 files changed, 12 insertions, 12 deletions
diff --git a/init.d/mount-ro.in b/init.d/mount-ro.in
index 2e41872..f466cba 100644
--- a/init.d/mount-ro.in
+++ b/init.d/mount-ro.in
@@ -1,5 +1,5 @@
#!@PREFIX@/sbin/runscript
-# Copyright 2007-2008 Roy Marples <roy@marples.name>
+# Copyright 2007-2009 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
description="Re-mount filesytems read-only for a clean reboot."
@@ -17,30 +17,30 @@ start()
ebegin "Remounting remaining filesystems read-only"
# We need the do_unmount function
- . "${RC_LIBDIR}"/sh/rc-mount.sh
+ . "$RC_LIBDIR"/sh/rc-mount.sh
eindent
local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|${RC_SVCDIR}" x= fs=
- m="${m}|/bin|/sbin|/lib|/libexec"
+ m="$m|/bin|/sbin|/lib|/libexec"
# RC_NO_UMOUNTS is an env var that can be set by plugins
local OIFS=$IFS SIFS=${IFS-y} IFS=$IFS
IFS=$IFS:
- for x in ${no_umounts} ${RC_NO_UMOUNTS}; do
- m="${m}|${x}"
+ for x in $no_umounts $RC_NO_UMOUNTS; do
+ m="$m|$x"
done
- if [ "${SIFS}" = y ]; then
+ if [ "$SIFS" = y ]; then
IFS=$OIFS
else
unset IFS
fi
- m="^(${m})$"
+ m="^($m)$"
fs=
- for x in ${net_fs_list}; do
- fs="${fs}${fs:+|}${x}"
+ for x in $net_fs_list; do
+ fs="$fs${fs:+|}$x"
done
- [ -n "${fs}" ] && fs="^(${fs})$"
+ [ -n "$fs" ] && fs="^($fs)$"
do_unmount "umount -r" \
- --skip-point-regex "${m}" \
- ${fs:+--skip-fstype-regex} ${fs} --nonetdev
+ --skip-point-regex "$m" \
+ ${fs:+--skip-fstype-regex} $fs --nonetdev
eoutdent
eend $?
}