15 lines
215 B
Text
15 lines
215 B
Text
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=50
|
||
|
USE_PROCD=1
|
||
|
PROG=/usr/bin/lcdexec
|
||
|
|
||
|
config_file=/etc/lcdexec.conf
|
||
|
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command $PROG -f -c $config_file
|
||
|
procd_close_instance
|
||
|
}
|
||
|
|