lantiq: Tune the XWAY subtarget cflags
[openwrt.git] / package / procd / files / procd.init
1 #!/bin/sh /etc/rc.common
2
3 START=11
4
5 start_stop() {
6         start-stop-daemon $1 -b -m -p /var/run/procd.pid -x /sbin/procd
7 }
8
9 start() {
10         start_stop -S
11 }
12
13 reload() {
14         return
15 }
16
17 stop() {
18         start_stop -K
19 }