mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 08:11:50 -04:00
24 lines
376 B
Bash
24 lines
376 B
Bash
#!/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="%%PREFIX%%/etc/LCDd.conf"}
|
|
: ${LCDd_flags="-c ${LCDd_conf}"}
|
|
|
|
required_files=${LCDd_conf}
|
|
command="%%PREFIX%%/sbin/LCDd"
|
|
|
|
run_rc_command "$1"
|