blob: e6a76f608d6b0882aa9375a810a079ce6ff8d314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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
}
|