2011-10-20 23:01:12 +08:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-08 06:59:01 +08:00
|
|
|
|
2011-10-20 23:01:12 +08:00
|
|
|
START=11
|
2011-11-08 06:59:01 +08:00
|
|
|
|
|
|
|
SERVICE_DAEMONIZE=1
|
|
|
|
SERVICE_WRITE_PID=1
|
2011-10-20 23:01:12 +08:00
|
|
|
|
|
|
|
start() {
|
2011-11-08 06:59:01 +08:00
|
|
|
service_start /sbin/ubusd
|
2011-10-20 23:01:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-08 06:59:01 +08:00
|
|
|
service_stop /sbin/ubusd
|
2011-10-20 23:01:12 +08:00
|
|
|
}
|