mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
19 lines
195 B
Bash
19 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
|
|
}
|