diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2008-08-14 21:10:10 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2008-08-14 21:10:10 +0000 |
commit | 1e9398a015d7c1a73dd784c34a23bb24095796ef (patch) | |
tree | 89e0d54b4049b69c0ca15477f2770e3e5a7f17f8 /net/wizd/files/wizd.sh.in | |
parent | 26dbc6b0a164e67d10c11f5924ae66e5ab22bf63 (diff) |
Notes
Diffstat (limited to 'net/wizd/files/wizd.sh.in')
-rw-r--r-- | net/wizd/files/wizd.sh.in | 30 |
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" |