summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d/local.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/local.in b/init.d/local.in
index 5583fea..4db492e 100644
--- a/init.d/local.in
+++ b/init.d/local.in
@@ -16,7 +16,7 @@ start()
local file
for file in @SYSCONFDIR@/local.d/*.start ; do
- [ -x $file ] && $file
+ [ -x "$file" ] && "$file"
done
if type local_start >/dev/null 2>&1; then
@@ -36,7 +36,7 @@ stop()
local file
for file in @SYSCONFDIR@/local.d/*.stop; do
- [ -x $file ] && $file
+ [ -x "$file" ] && "$file"
done
if type local_start >/dev/null 2>&1; then