diff options
author | Roy Marples <roy@marples.name> | 2008-03-11 13:55:39 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-11 13:55:39 +0000 |
commit | 568ec5f343912f4b63a2db769da68e842a239ae5 (patch) | |
tree | eadbc8819ef612deb2ea594320040b80eeb5dff3 | |
parent | 6f68c44a77c37efc2a4f773e9c4e483ea7139125 (diff) |
Don't state the fstype we're using as fstab could be totally different.
-rw-r--r-- | sh.Linux/init.sh.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sh.Linux/init.sh.in b/sh.Linux/init.sh.in index ac1ae0a6..25a3ecb7 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 |