2011-06-07 10:24:57 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-14 02:38:40 +00:00
|
|
|
# Copyright (C) 2011 OpenWrt.org
|
2011-06-07 10:24:57 +00:00
|
|
|
|
2011-11-14 02:38:40 +00:00
|
|
|
START=99
|
2011-06-07 10:24:57 +00:00
|
|
|
|
|
|
|
start() {
|
2011-11-14 02:38:40 +00:00
|
|
|
service_start /usr/bin/seeks --daemon
|
2011-06-07 10:24:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-14 02:38:40 +00:00
|
|
|
service_stop /usr/bin/seeks
|
2011-06-07 10:24:57 +00:00
|
|
|
}
|