openwrtv4/package/system/rpcd/files/rpcd.init
Jo-Philipp Wich e6d015489b rpcd: update to git head
- adds support for service triggering on config commit
	- adds uci transaction support
	- adds daemon reload support without loosing session data
	- exports headers for use by external plugins
	- drops LuCI2 in favor to an out of tree plugin

SVN-Revision: 37921
2013-09-09 14:35:15 +00:00

18 lines
193 B
Bash
Executable file

#!/bin/sh /etc/rc.common
START=12
SERVICE_DAEMONIZE=1
SERVICE_WRITE_PID=1
start() {
service_start /sbin/rpcd
}
stop() {
service_stop /sbin/rpcd
}
reload() {
service_reload /sbin/rpcd
}