blob: 7d19b8ca39d590c2ce5736bbc0099c2b624861ab (
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 "".
#
. %%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"}
run_rc_command "$1"
|