summaryrefslogtreecommitdiff
path: root/www/fhttpd/files/fhttpd.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--www/fhttpd/files/fhttpd.sh20
1 files changed, 19 insertions, 1 deletions
diff --git a/www/fhttpd/files/fhttpd.sh b/www/fhttpd/files/fhttpd.sh
index 51bbd8b71eeb..916f6e763f84 100644
--- a/www/fhttpd/files/fhttpd.sh
+++ b/www/fhttpd/files/fhttpd.sh
@@ -1,2 +1,20 @@
#!/bin/sh
-[ -x /usr/local/sbin/fhttpd ] && /usr/local/sbin/fhttpd -c /usr/local/etc/fhttpd.conf -l /usr/local/share/fhttpd/fhttpd.log >/dev/null 2>&1 && echo -n " fhttpd"
+
+if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
+ echo "$0: Cannot determine the PREFIX" >&2
+ exit 1
+fi
+
+case "$1" in
+start)
+ [ -x ${PREFIX}/sbin/fhttpd ] && ${PREFIX}/sbin/fhttpd -c ${PREFIX}/etc/fhttpd.conf -l ${PREFIX}/share/fhttpd/fhttpd.log > /dev/null 2>&1 && echo -n ' fhttpd'
+ ;;
+stop)
+ killall fhttpd && echo -n ' fhttpd'
+ ;;
+*)
+ echo "Usage: `basename $0` {start|stop}" >&2
+ ;;
+esac
+
+exit 0