summaryrefslogtreecommitdiff
path: root/net/wizd/files/wizd.in
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2012-08-05 23:19:36 +0000
committerDoug Barton <dougb@FreeBSD.org>2012-08-05 23:19:36 +0000
commit9aac569eaa031e27191a3f4165b389a17f467ad2 (patch)
tree1ed78841e1757014ccc09581c61c3683992d3f77 /net/wizd/files/wizd.in
parentWhen installing in the base, USE_RCORDER does the right thing without (diff)
Move the rc.d scripts of the form *.sh.in to *.in
Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
Notes
Notes: svn path=/head/; revision=302141
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"