aboutsummaryrefslogtreecommitdiff
path: root/net/wizd/files/wizd.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/wizd/files/wizd.in')
-rw-r--r--net/wizd/files/wizd.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/net/wizd/files/wizd.in b/net/wizd/files/wizd.in
new file mode 100644
index 000000000000..4239fec4ba22
--- /dev/null
+++ b/net/wizd/files/wizd.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: wizd
+# REQUIRE: LOGIN cleanvar
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf to enable wizd:
+# wizd_enable (bool): Set it to "YES" to enable wizd.
+# Default is "NO".
+# wizd_flags (str): Flags passed to widz on startup.
+# Default is "".
+#
+
+. /etc/rc.subr
+
+name="wizd"
+rcvar=wizd_enable
+
+command="%%PREFIX%%/bin/$name"
+command_args="-d"
+required_files="%%PREFIX%%/etc/$name.conf"
+
+load_rc_config $name
+
+: ${wizd_enable="NO"}
+
+run_rc_command "$1"