7fcf106b972036316628e9fd6501f660b363fb91
[openwrt.git] / package / ubus / files / ubus.init
1 #!/bin/sh /etc/rc.common
2 START=11
3 PIDFILE=/var/run/ubusd.pid
4
5 start() {
6 start-stop-daemon -S -b -m -p $PIDFILE -x /sbin/ubusd
7 }
8
9 stop() {
10 start-stop-daemon -K -x /sbin/ubusd -p $PIDFILE
11 }
This page took 0.039008 seconds and 3 git commands to generate.