summaryrefslogtreecommitdiff
path: root/sh.Linux
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-11 13:55:39 +0000
committerRoy Marples <roy@marples.name>2008-03-11 13:55:39 +0000
commit568ec5f343912f4b63a2db769da68e842a239ae5 (patch)
treeeadbc8819ef612deb2ea594320040b80eeb5dff3 /sh.Linux
parent6f68c44a77c37efc2a4f773e9c4e483ea7139125 (diff)
downloadopenrc-568ec5f343912f4b63a2db769da68e842a239ae5.tar.gz
openrc-568ec5f343912f4b63a2db769da68e842a239ae5.tar.bz2
openrc-568ec5f343912f4b63a2db769da68e842a239ae5.tar.xz
Don't state the fstype we're using as fstab could be totally different.
Diffstat (limited to 'sh.Linux')
-rw-r--r--sh.Linux/init.sh.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/sh.Linux/init.sh.in b/sh.Linux/init.sh.in
index ac1ae0a..25a3ecb 100644
--- a/sh.Linux/init.sh.in
+++ b/sh.Linux/init.sh.in
@@ -88,7 +88,7 @@ fi
if ${mountproc}; then
procfs="proc"
[ "${RC_UNAME}" = "GNU/kFreeBSD" ] && proc="linprocfs"
- ebegin "Mounting ${procfs} at /proc"
+ ebegin "Mounting /proc"
if ! fstabinfo --mount /proc; then
mount -n -t "${procfs}" -o noexec,nosuid,nodev proc /proc
fi
@@ -111,7 +111,7 @@ then
if grep -Eq "[[:space:]]+sysfs$" /proc/filesystems; then
if [ -d /sys ]; then
if ! mountinfo --quiet /sys; then
- ebegin "Mounting sysfs at /sys"
+ ebegin "Mounting /sys"
if ! fstabinfo --mount /sys; then
mount -n -t sysfs -o noexec,nosuid,nodev sysfs /sys
fi
@@ -166,7 +166,7 @@ do
fi
if [ -d "$2" ]; then
- ebegin "Mounting $1 at $2"
+ ebegin "Mounting $2"
if ! fstabinfo --mount "$2"; then
mount -n -t "$1" -o noexec,nosuid"$4" "$5" "$2"
fi