diff options
author | Kurt J. Bosch <kjb-temp-2009@alpenjodel.de> | 2011-07-03 18:46:56 +0200 |
---|---|---|
committer | Kurt J. Bosch <kjb-temp-2009@alpenjodel.de> | 2011-07-10 18:04:25 +0200 |
commit | f036700f0e4c112e533d0468da91ffa5e06929b9 (patch) | |
tree | 3cb737dacf59e70ab345e65c7848b296ff050ad9 /functions | |
parent | cd34f837bfe3cc4798aeb5789f7717000ccdbf60 (diff) |
functions: Add missing quotes in mount_all()
Prevent any word splitting where not intended.
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -417,7 +417,7 @@ fsck_reboot() { mount_all() { stat_busy "Mounting Local Filesystems" run_hook sysinit_premount - mount -a -t $NETFS -O no_netdev + mount -a -t "$NETFS" -O no_netdev run_hook sysinit_postmount stat_done } |