mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
4ebf19b48f
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37007
20 lines
195 B
Bash
20 lines
195 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=11
|
|
|
|
start_stop() {
|
|
start-stop-daemon $1 -b -m -p /var/run/procd.pid -x /sbin/procd
|
|
}
|
|
|
|
start() {
|
|
start_stop -S
|
|
}
|
|
|
|
reload() {
|
|
return
|
|
}
|
|
|
|
stop() {
|
|
start_stop -K
|
|
}
|