1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-03 10:45:26 +03:00
openwrt-xburst/package/ubus/files/ubus.init

15 lines
154 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
START=11
SERVICE_DAEMONIZE=1
SERVICE_WRITE_PID=1
start() {
service_start /sbin/ubusd
}
stop() {
service_stop /sbin/ubusd
}