summaryrefslogtreecommitdiffstats
path: root/package/ubus/files
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2011-11-07 22:59:01 +0000
committerNicolas Thill <nico@openwrt.org>2011-11-07 22:59:01 +0000
commitd7409c85b50cc51c88607f8f9fd362fd7d55b0bb (patch)
treeb3b26f9ec849deb95ef917f376c4f65b5047b6fc /package/ubus/files
parent7a176742bb66cc1e7ed712dbb1ee75385c900287 (diff)
downloadmaster-31e0f0ae-d7409c85b50cc51c88607f8f9fd362fd7d55b0bb.tar.gz
master-31e0f0ae-d7409c85b50cc51c88607f8f9fd362fd7d55b0bb.tar.bz2
master-31e0f0ae-d7409c85b50cc51c88607f8f9fd362fd7d55b0bb.zip
package/ubus: use new service wrapper
SVN-Revision: 28840
Diffstat (limited to 'package/ubus/files')
-rwxr-xr-xpackage/ubus/files/ubus.init9
1 files changed, 6 insertions, 3 deletions
diff --git a/package/ubus/files/ubus.init b/package/ubus/files/ubus.init
index 7fcf106b97..70fe21c6aa 100755
--- a/package/ubus/files/ubus.init
+++ b/package/ubus/files/ubus.init
@@ -1,11 +1,14 @@
#!/bin/sh /etc/rc.common
+
START=11
-PIDFILE=/var/run/ubusd.pid
+
+SERVICE_DAEMONIZE=1
+SERVICE_WRITE_PID=1
start() {
- start-stop-daemon -S -b -m -p $PIDFILE -x /sbin/ubusd
+ service_start /sbin/ubusd
}
stop() {
- start-stop-daemon -K -x /sbin/ubusd -p $PIDFILE
+ service_stop /sbin/ubusd
}