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