diff options
author | Roy Marples <roy@marples.name> | 2008-07-09 17:05:10 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-07-09 17:05:10 +0000 |
commit | 289889ebf0045d603ce857467ed0156d65c8f50b (patch) | |
tree | 9c1d578903b1c42ae952406542f1fdd804413dd3 | |
parent | 7183cb1b18957f05026e27036f7d70da1571f619 (diff) |
Fix unmounting some more.
-rw-r--r-- | init.d/halt.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/halt.sh.in b/init.d/halt.sh.in index 2b569ed6..0f189afe 100644 --- a/init.d/halt.sh.in +++ b/init.d/halt.sh.in @@ -93,7 +93,7 @@ if [ "${RC_UNAME}" = "Linux" ]; then unset IFS fi no_umounts_r="${no_umounts_r}|/proc|/proc/.*|/sys|/sys/.*" - no_umounts_r="^(${no_umounts})$" + no_umounts_r="^(${no_umounts_r})$" fs= for x in ${net_fs_list}; do fs="${fs}${fs:+|}${x}" |