mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-04 13:42:24 +00:00
15 lines
152 B
Plaintext
15 lines
152 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=12
|
||
|
|
||
|
SERVICE_DAEMONIZE=1
|
||
|
SERVICE_WRITE_PID=1
|
||
|
|
||
|
start() {
|
||
|
service_start /sbin/rpcd
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /sbin/rpcd
|
||
|
}
|