blob: 595407f909a7673308c5218d7b2c216683403ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh /etc/rc.common
START=22
USE_PROCD=1
PROG=/usr/sbin/LCDd
config_file=/etc/LCDd.conf
start_service() {
procd_open_instance
procd_set_param command $PROG -f -c $config_file
procd_close_instance
}
|