mirror of https://git.FreeBSD.org/ports.git
25 lines
403 B
Bash
25 lines
403 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: lcdexec
|
|
# REQUIRE: LCDd
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
# SET THEM IN THE /etc/rc.conf FILE
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="lcdexec"
|
|
rcvar=lcdexec_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${lcdexec_enable="NO"}
|
|
: ${lcdexec_conf="%%PREFIX%%/etc/lcdexec.conf"}
|
|
: ${lcdexec_flags="-c ${lcdexec_conf}"}
|
|
|
|
required_files=${lcdexec_conf}
|
|
command="%%PREFIX%%/bin/lcdexec"
|
|
|
|
run_rc_command "$1"
|