diff options
Diffstat (limited to 'packages/thttpd/files/init')
-rw-r--r-- | packages/thttpd/files/init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/thttpd/files/init b/packages/thttpd/files/init index 4e227d9f13..fdcd0f4530 100644 --- a/packages/thttpd/files/init +++ b/packages/thttpd/files/init @@ -18,7 +18,7 @@ case "$1" in ;; stop) echo -n "Stopping thttpd" - start-stop-daemon --stop --quiet $thttpd + start-stop-daemon --stop --quiet --exec $thttpd echo "." ;; reload|force-reload) @@ -26,7 +26,7 @@ case "$1" in ;; restart) echo -n "Stopping thttpd" - start-stop-daemon --stop --quiet $thttpd + start-stop-daemon --stop --quiet --exec $thttpd echo "." echo -n "Waiting for thttpd to die off" for i in 1 2 3 ; |