summaryrefslogtreecommitdiff
path: root/net/wizd/files/wizd.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/wizd/files/wizd.sh.in')
-rw-r--r--net/wizd/files/wizd.sh.in30
1 files changed, 30 insertions, 0 deletions
diff --git a/net/wizd/files/wizd.sh.in b/net/wizd/files/wizd.sh.in
new file mode 100644
index 000000000000..ff8027991446
--- /dev/null
+++ b/net/wizd/files/wizd.sh.in
@@ -0,0 +1,30 @@
+#!/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 "".
+#
+
+. %%RC_SUBR%%
+
+name="wizd"
+rcvar=${name}_enable
+
+command="%%PREFIX%%/bin/$name"
+command_args="-d"
+required_files="%%PREFIX%%/etc/$name.conf"
+
+load_rc_config $name
+
+: ${wizd_enable="NO"}
+: ${wizd_flags=""}
+
+run_rc_command "$1"