1 |
#!/bin/sh |
2 |
# |
3 |
# $FreeBSD: ports/sysutils/lcdproc/files/LCDd.in,v 1.1 2006/05/03 19:01:48 mnag Exp $ |
4 |
# |
5 |
# PROVIDE: LCDd |
6 |
# REQUIRE: DAEMON |
7 |
# |
8 |
# DO NOT CHANGE THESE DEFAULT VALUES HERE |
9 |
# SET THEM IN THE /etc/rc.conf FILE |
10 |
# |
11 |
|
12 |
. %%RC_SUBR%% |
13 |
|
14 |
name="LCDd" |
15 |
rcvar=${name}_enable |
16 |
|
17 |
load_rc_config $name |
18 |
|
19 |
: ${LCDd_enable="NO"} |
20 |
: ${LCDd_conf="%%PREFIX%%/etc/LCDd.conf"} |
21 |
: ${LCDd_flags="-c ${LCDd_conf}"} |
22 |
|
23 |
required_files=${LCDd_conf} |
24 |
command="%%PREFIX%%/sbin/LCDd" |
25 |
|
26 |
run_rc_command "$1" |