#!/sbin/svc
#  LCDproc LCD display driver

MYLISTING="LCD display driver"
CONTROL_GROUP="conf"

CFGFILE="/etc/lcdproc/LCDd.conf.local"

start() {
	[ -r "${CFGFILE}" ] || return 1
	daemonize_orig /usr/sbin/LCDd -f -c $CFGFILE 
}

stop() {
	kill_pid
}

