From e5f0a0666f4c83f62a06c342fc561a52636d6249 Mon Sep 17 00:00:00 2001 From: Kirill Elagin Date: Tue, 28 Jun 2011 00:18:05 +0400 Subject: [PATCH] Fix saving and restoring of $IFS --- init.d/localmount.in | 8 +------- init.d/mount-ro.in | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/init.d/localmount.in b/init.d/localmount.in index 3b7ba44..7b92166 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -37,16 +37,10 @@ stop() local x= no_umounts_r="/|/dev|/dev/.*|${RC_SVCDIR}" no_umounts_r="${no_umounts_r}|/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: + local IFS=$IFS: for x in $no_umounts $RC_NO_UMOUNTS; do no_umounts_r="$no_umounts_r|$x" done - if [ "$SIFS" = y ]; then - IFS=$OIFS - else - unset IFS - fi if [ "$RC_UNAME" = Linux ]; then no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*" diff --git a/init.d/mount-ro.in b/init.d/mount-ro.in index 69032d7..e4ce6d5 100644 --- a/init.d/mount-ro.in +++ b/init.d/mount-ro.in @@ -22,16 +22,10 @@ start() local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|${RC_SVCDIR}" x= fs= 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: + local IFS=$IFS: for x in $no_umounts $RC_NO_UMOUNTS; do m="$m|$x" done - if [ "$SIFS" = y ]; then - IFS=$OIFS - else - unset IFS - fi m="^($m)$" fs= for x in $net_fs_list; do -- 1.7.3.4