aboutsummaryrefslogtreecommitdiffstats
path: root/unik-olsrd
diff options
context:
space:
mode:
authorBruno Randolf <br1@subnet.at>2004-10-14 12:33:27 +0000
committerBruno Randolf <br1@subnet.at>2004-10-14 12:33:27 +0000
commit9ca6dcbca3eac151e8e96ae92afe020278593bde (patch)
tree05ebbe8cb08316fdb7814a576eac0bc323397ad3 /unik-olsrd
parent209a75dd956559ed2d26b2a44212a5393414bad0 (diff)
downloadopenembedded-9ca6dcbca3eac151e8e96ae92afe020278593bde.tar.gz
Merge bk://openembedded@openembedded.bkbits.net/packages
into null.(none):/data/mtx/oe/oe.write/packages 2004/10/14 14:32:43+02:00 (none)!br1 added mtx-1 2.4.27 kernel 2004/10/14 14:31:42+02:00 (none)!br1 added shorewall firewall 2004/10/14 14:31:24+02:00 (none)!br1 cleanup unik-olsrd init script BKrev: 416e7217e_hI_d_QgIjeLV6z7lBhGw
Diffstat (limited to 'unik-olsrd')
-rw-r--r--unik-olsrd/files/unik-olsrd36
1 files changed, 36 insertions, 0 deletions
diff --git a/unik-olsrd/files/unik-olsrd b/unik-olsrd/files/unik-olsrd
index e69de29bb2..8b1ffa6036 100644
--- a/unik-olsrd/files/unik-olsrd
+++ b/unik-olsrd/files/unik-olsrd
@@ -0,0 +1,36 @@
+#! /bin/sh
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+DAEMON=/usr/sbin/olsrd
+NAME=unik-olsrd
+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