e6d015489b
- 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
18 lines
193 B
Bash
Executable file
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
|
|
}
|