22 lines
298 B
Plaintext
22 lines
298 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2008 OpenWrt.org
|
||
|
START=99
|
||
|
|
||
|
DAEMON=/usr/bin/seeks
|
||
|
|
||
|
start() {
|
||
|
echo 'seeks is starting...'
|
||
|
start-stop-daemon -S -q -x "$DAEMON" -- --daemon
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
echo 'seeks is stopping...'
|
||
|
start-stop-daemon -K -q -x "$DAEMON"
|
||
|
}
|
||
|
|
||
|
restart() {
|
||
|
stop
|
||
|
sleep 2
|
||
|
start
|
||
|
}
|