aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorKurt J. Bosch <kjb-temp-2009@alpenjodel.de>2011-07-03 18:46:56 +0200
committerKurt J. Bosch <kjb-temp-2009@alpenjodel.de>2011-07-10 18:04:25 +0200
commitf036700f0e4c112e533d0468da91ffa5e06929b9 (patch)
tree3cb737dacf59e70ab345e65c7848b296ff050ad9 /functions
parentcd34f837bfe3cc4798aeb5789f7717000ccdbf60 (diff)
downloadinitscripts-f036700f0e4c112e533d0468da91ffa5e06929b9.tar.xz
functions: Add missing quotes in mount_all()
Prevent any word splitting where not intended.
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index 71b49e3..ec043b6 100644
--- a/functions
+++ b/functions
@@ -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
}