ports/sysutils/lcdproc/files/LCDd.in
Doug Barton 1d6b4b3f91 Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr#
2010-03-27 00:15:24 +00:00

26 lines
394 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: LCDd
# REQUIRE: DAEMON
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
# SET THEM IN THE /etc/rc.conf FILE
#
. /etc/rc.subr
name="LCDd"
rcvar=${name}_enable
load_rc_config $name
: ${LCDd_enable="NO"}
: ${LCDd_conf="%%PREFIX%%/etc/LCDd.conf"}
: ${LCDd_flags="-c ${LCDd_conf}"}
required_files=${LCDd_conf}
command="%%PREFIX%%/sbin/LCDd"
run_rc_command "$1"