1#!/bin/sh /etc/rc.common
2
3START=11
4
5SERVICE_DAEMONIZE=1
6SERVICE_WRITE_PID=1
7
8start() {
9	service_start /sbin/ubusd
10}
11
12stop() {
13	service_stop /sbin/ubusd
14}
15