summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-httpd/sthttpd/sthttpd/init
diff options
context:
space:
mode:
Diffstat (limited to 'meta-webserver/recipes-httpd/sthttpd/sthttpd/init')
-rw-r--r--meta-webserver/recipes-httpd/sthttpd/sthttpd/init6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-webserver/recipes-httpd/sthttpd/sthttpd/init b/meta-webserver/recipes-httpd/sthttpd/sthttpd/init
index 70f6797a7..f5f7b0124 100644
--- a/meta-webserver/recipes-httpd/sthttpd/sthttpd/init
+++ b/meta-webserver/recipes-httpd/sthttpd/sthttpd/init
@@ -18,7 +18,7 @@ test -x "$thttpd" || exit 0
18case "$1" in 18case "$1" in
19 start) 19 start)
20 echo -n "Starting thttpd" 20 echo -n "Starting thttpd"
21 start-stop-daemon --start --quiet --exec $thttpd -- -d @@SRVDIR 21 start-stop-daemon --start --quiet --exec $thttpd -- -C @@CONFFILE
22 echo "." 22 echo "."
23 ;; 23 ;;
24 stop) 24 stop)
@@ -31,7 +31,7 @@ case "$1" in
31 ;; 31 ;;
32 restart) 32 restart)
33 echo -n "Stopping thttpd" 33 echo -n "Stopping thttpd"
34 start-stop-daemon --stop --quiet --exec $thttpd -- -d @@SRVDIR 34 start-stop-daemon --stop --quiet --exec $thttpd -- -C @@CONFFILE
35 echo "." 35 echo "."
36 echo -n "Waiting for thttpd to die off" 36 echo -n "Waiting for thttpd to die off"
37 for i in 1 2 3 ; 37 for i in 1 2 3 ;
@@ -41,7 +41,7 @@ case "$1" in
41 done 41 done
42 echo "" 42 echo ""
43 echo -n "Starting thttpd" 43 echo -n "Starting thttpd"
44 start-stop-daemon --start --quiet --exec $thttpd -- -d @@SRVDIR 44 start-stop-daemon --start --quiet --exec $thttpd -- -C @@CONFFILE
45 echo "." 45 echo "."
46 ;; 46 ;;
47 *) 47 *)