blob: 036281511e2643d0e64daa472f03993b5a9923b5 (
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/lcdvc
config_file=/etc/lcdvc.conf
start_service() {
procd_open_instance
procd_set_param command $PROG -f -c $config_file
procd_close_instance
}
|