summaryrefslogtreecommitdiff
path: root/init.d/devfs.in
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/devfs.in')
-rw-r--r--init.d/devfs.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/init.d/devfs.in b/init.d/devfs.in
index 84f3575..4c92b2c 100644
--- a/init.d/devfs.in
+++ b/init.d/devfs.in
@@ -15,19 +15,19 @@ start() {
"devpts /dev/pts 0755 ,gid=5,mode=0620 devpts" \
"tmpfs /dev/shm 1777 ,nodev shm" \
; do
- set -- ${x}
+ set -- $x
grep -Eq "[[:space:]]+$1$" /proc/filesystems || continue
- mountinfo -q "$2" && continue
+ mountinfo -q $2 && continue
- if [ ! -d "$2" ]; then
- mkdir -m "$3" -p "$2" >/dev/null 2>&1 || \
+ if [ ! -d $2 ]; then
+ mkdir -m $3 -p $2 >/dev/null 2>&1 || \
ewarn "Could not create $2!"
fi
- if [ -d "$2" ]; then
+ if [ -d $2 ]; then
ebegin "Mounting $2"
- if ! fstabinfo --mount "$2"; then
- mount -n -t "$1" -o noexec,nosuid"$4" "$5" "$2"
+ if ! fstabinfo --mount $2; then
+ mount -n -t $1 -o noexec,nosuid$4 $5 $2
fi
eend $?
fi