blob: 4239fec4ba225eea0426f3fb7972e3ebee400181 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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"
|