diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-06-24 08:39:00 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-06-24 08:39:00 +0000 |
commit | 033f81a7ae575ff24b311a501d104e2e7b376e96 (patch) | |
tree | ab50e7225c60ab33503dd68b1fbbbb4150f5821e /packages/olsrd/files/init | |
parent | f0a7dda7ca5891361821f41a7515254c09c648d1 (diff) |
olsr: consolidate olsr and olsrd into a common directory
Diffstat (limited to 'packages/olsrd/files/init')
-rw-r--r-- | packages/olsrd/files/init | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/packages/olsrd/files/init b/packages/olsrd/files/init deleted file mode 100644 index 46b2aaabd2..0000000000 --- a/packages/olsrd/files/init +++ /dev/null @@ -1,36 +0,0 @@ -#! /bin/sh - -PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin -DAEMON=/usr/sbin/olsrd -NAME="olsr.org" -DESC="OLSR routing protocol daemon" - -test -x $DAEMON || exit 0 - -set -e - -case "$1" in - start) - echo "Starting $DESC: $NAME" - start-stop-daemon -S -x $DAEMON -- -d 0; - echo "done." - ;; - stop) - echo "Stopping $DESC: $NAME " - start-stop-daemon -K -x $DAEMON - echo "done." - ;; - restart|force-reload) - echo "restarting $DESC: $NAME " - $0 stop - sleep 5 - $0 start - exit; - ;; - *) - echo "Usage: /etc/init.d/$NAME {start|stop|restart}" >&2 - exit 1 - ;; -esac - -exit 0 |