aboutsummaryrefslogtreecommitdiff
path: root/www/thttpd/files/thttpd.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'www/thttpd/files/thttpd.sh.in')
-rw-r--r--www/thttpd/files/thttpd.sh.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/www/thttpd/files/thttpd.sh.in b/www/thttpd/files/thttpd.sh.in
new file mode 100644
index 000000000000..f3a4dc6229bb
--- /dev/null
+++ b/www/thttpd/files/thttpd.sh.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: thttpd
+# REQUIRE: NETWORKING SERVERS
+# BEFORE: DAEMON
+# KEYWORD: FreeBSD shutdown
+
+#
+# Add the following line to /etc/rc.conf to enable thttpd:
+#
+# thttpd_enable="YES"
+#
+
+. %%RC_SUBR%%
+
+name=thttpd
+rcvar=`set_rcvar`
+
+command=%%PREFIX%%/sbin/thttpd
+required_files=%%PREFIX%%/etc/thttpd.conf
+
+thttpd_enable=${thttpd_enable:-"NO"}
+thttpd_flags=${thttpd_flags:-"-C %%PREFIX%%/etc/thttpd.conf"}
+
+load_rc_config $name
+run_rc_command "$1"