packages/seeks: use new service functions
[packages.git] / net / seeks / files / seeks.init
index c636d6b..eb4c5e4 100644 (file)
@@ -1,21 +1,12 @@
 #!/bin/sh /etc/rc.common
-# Copyright (C) 2008 OpenWrt.org
-START=99
+# Copyright (C) 2011 OpenWrt.org
 
-DAEMON=/usr/bin/seeks
+START=99
 
 start() {
-       echo 'seeks is starting...'
-       start-stop-daemon -S -q -x "$DAEMON" -- --daemon
+       service_start /usr/bin/seeks --daemon
 }
 
 stop() {
-       echo 'seeks is stopping...'
-       start-stop-daemon -K -q -x "$DAEMON"
-}
-
-restart() {
-       stop
-       sleep 2
-       start
+       service_stop /usr/bin/seeks
 }