diff options
Diffstat (limited to 'init.d/local.in')
-rw-r--r-- | init.d/local.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/local.in b/init.d/local.in index 5583fead..4db492ed 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 |