#!/bin/sh

# 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=LCDd_enable

load_rc_config $name

: ${LCDd_enable="NO"}
: ${LCDd_conf="/usr/local/etc/LCDd.conf"}
: ${LCDd_flags="-c ${LCDd_conf}"}

required_files=${LCDd_conf}
command="/usr/local/sbin/LCDd"

run_rc_command "$1"
