diff options
author | Koen Kooi <koen@openembedded.org> | 2006-04-28 10:11:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-28 10:11:30 +0000 |
commit | 8b3e60e790a45fb4ce6be5399442e4c17835d2c1 (patch) | |
tree | e3ad350d8614f7eba66d36cca0c540136987be9d /packages/quagga/files | |
parent | 4b0e628158e8fc23584fa792a207993bf6f2a8af (diff) |
quagga: add 0.99.2 and 0.99.3, closes #476
Diffstat (limited to 'packages/quagga/files')
-rw-r--r-- | packages/quagga/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/quagga/files/fix-for-lib-inpath.patch | 19 | ||||
-rw-r--r-- | packages/quagga/files/quagga.default | 12 | ||||
-rw-r--r-- | packages/quagga/files/quagga.init | 186 | ||||
-rw-r--r-- | packages/quagga/files/watchquagga.default | 7 | ||||
-rw-r--r-- | packages/quagga/files/watchquagga.init | 57 |
6 files changed, 281 insertions, 0 deletions
diff --git a/packages/quagga/files/.mtn2git_empty b/packages/quagga/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/quagga/files/.mtn2git_empty diff --git a/packages/quagga/files/fix-for-lib-inpath.patch b/packages/quagga/files/fix-for-lib-inpath.patch new file mode 100644 index 0000000000..50f0ad502f --- /dev/null +++ b/packages/quagga/files/fix-for-lib-inpath.patch @@ -0,0 +1,19 @@ +At first this worked, then I tried a clean build in a directory that +contained lib in it (oe/build/titan-glibc) and vtysh no longer +worked. It's test for the lib directory was excepting anything +containing lib. + +With this patch you still cannot have lib in the path anywhere, but +at least things containing lib will now work. + +--- quagga-0.99.2/vtysh/extract.pl.in 2005/11/16 04:12:04 1.1 ++++ quagga-0.99.2/vtysh/extract.pl.in 2005/11/16 04:12:16 +@@ -89,7 +89,7 @@ + $cmd =~ s/\s+$//g; + + # $protocol is VTYSH_PROTO format for redirection of user input +- if ($file =~ /lib/) { ++ if ($file =~ /\/lib\//) { + if ($file =~ /keychain.c/) { + $protocol = "VTYSH_RIPD"; + } diff --git a/packages/quagga/files/quagga.default b/packages/quagga/files/quagga.default new file mode 100644 index 0000000000..4c4bc23071 --- /dev/null +++ b/packages/quagga/files/quagga.default @@ -0,0 +1,12 @@ +# If this option is set the /etc/init.d/quagga script automatically loads +# the config via "vtysh -b" when the servers are started. +vtysh_enable=yes + +# Bind all daemons to loopback only by default +zebra_options=" --daemon -A 127.0.0.1" +bgpd_options=" --daemon -A 127.0.0.1" +ospfd_options=" --daemon -A 127.0.0.1" +ospf6d_options="--daemon -A ::1" +ripd_options=" --daemon -A 127.0.0.1" +ripngd_options="--daemon -A ::1" +isisd_options=" --daemon -A 127.0.0.1" diff --git a/packages/quagga/files/quagga.init b/packages/quagga/files/quagga.init new file mode 100644 index 0000000000..cfc02d8b81 --- /dev/null +++ b/packages/quagga/files/quagga.init @@ -0,0 +1,186 @@ +#!/bin/sh +# +# /etc/init.d/quagga -- start/stop the Quagga routing daemons +# +# Based on debian version by Endre Hirling <endre@mail.elte.hu> and +# Christian Hammers <ch@debian.org>. +# + +# NOTE: sbin must be before bin so we get the iproute2 ip and not the +# busybox ip command. The busybox one flushes all routes instead of just +# the dynamic routes +PATH=/sbin:/usr/sbin:/bin:/usr/bin:/sbin +D_PATH=/usr/lib/quagga +C_PATH=/etc/quagga +DAEMONS="zebra bgpd ripd ripngd ospfd ospf6d isisd" # keep zebra first! + +# Print the name of the pidfile. +pidfile() +{ + echo "/var/run/quagga/$1.pid" +} + +# Check if daemon is started by using the pidfile. +started() +{ + [ -e `pidfile $1` ] && kill -0 `cat \`pidfile $1\`` 2> /dev/null && return 0 + return 1 +} + +# Loads the config via vtysh -b if configured to do so. +vtysh_b () +{ + # Rember, that all variables have been incremented by 1 in convert_daemon_prios() + if [ "$vtysh_enable" = 2 -a -f $C_PATH/Quagga.conf ]; then + /usr/bin/vtysh -b + fi +} + +# Check if the daemon is activated and if its executable and config files +# are in place. +# params: daemon name +# returns: 0=ok, 1=error +check_daemon() +{ + # If the integrated config file is used the others are not checked. + if [ -r "$C_PATH/Quagga.conf" ]; then + return 0 + fi + + # check for config file + if [ ! -r "$C_PATH/$1.conf" ]; then + return 1 + fi + return 0 +} + +# Starts the server if it's not alrady running according to the pid file. +# The Quagga daemons creates the pidfile when starting. +start() +{ + if ! check_daemon $1; then echo -n " (!$1)"; return; fi + echo -n " $1" + start-stop-daemon \ + --start \ + --pidfile=`pidfile $1` \ + --exec "$D_PATH/$1" \ + -- \ + `eval echo "$""$1""_options"` + +} + +# Stop the daemon given in the parameter, printing its name to the terminal. +stop() +{ + if ! started "$1" ; then + echo -n " (!$1)" + return 0 + else + PIDFILE=`pidfile $1` + PID=`cat $PIDFILE 2>/dev/null` + start-stop-daemon --stop --quiet --exec "$D_PATH/$1" + # + # Now we have to wait until $DAEMON has _really_ stopped. + # + if test -n "$PID" && kill -0 $PID 2>/dev/null; then + echo -n " (waiting) ." + cnt=0 + while kill -0 $PID 2>/dev/null; do + cnt=`expr $cnt + 1` + if [ $cnt -gt 60 ]; then + # Waited 120 secs now, fail. + echo -n "Failed.. " + break + fi + sleep 2 + echo -n "." + done + fi + echo -n " $1" + rm -f `pidfile $1` + fi +} + +stop_all() +{ + local daemon_list + daemon_list=${1:-$DAEMONS} + + echo -n "Stopping Quagga daemons:" + for daemon_name in $daemon_list; do + stop "$daemon_name" + done + echo "." +} + +start_all() +{ + local daemon_list + daemon_list=${1:-$DAEMONS} + + echo -n "Starting Quagga daemons:" + for daemon_name in $daemon_list; do + start "$daemon_name" + done + echo "." +} + +status_all() +{ + local daemon_list + daemon_list=${1:-$DAEMONS} + res=1 + + echo -n "quagga: " + for daemon_name in $daemon_list; do + if started "$daemon_name" ; then + id=`cat \`pidfile $daemon_name\`` + echo -n "$daemon_name (pid $id) " + res=0 + fi + done + if [ $res -eq 0 ]; then + echo "is running..." + else + echo "is stopped..." + fi + exit $res +} + +######################################################### +# Main program # +######################################################### + +# Load configuration +test -f /etc/default/quagga && . /etc/default/quagga + +case "$1" in + start) + cd $C_PATH/ + start_all $2 + vtysh_b + ;; + + stop) + stop_all $2 + echo "Removing all routes made by zebra." + ip route flush proto zebra + ;; + + status) + status_all $2 + ;; + + restart|force-reload) + $0 stop $2 + sleep 1 + $0 start $2 + ;; + + *) + echo "Usage: /etc/init.d/quagga {start|stop|restart|status|force-reload} [daemon]" + exit 1 + ;; +esac + +exit 0 diff --git a/packages/quagga/files/watchquagga.default b/packages/quagga/files/watchquagga.default new file mode 100644 index 0000000000..f1520326f1 --- /dev/null +++ b/packages/quagga/files/watchquagga.default @@ -0,0 +1,7 @@ +# Watchquagga configuration +#watch_daemons="zebra bgpd ospfd ospf6d ripd ripngd" +watch_daemons="zebra" + +# To enable restarts, uncomment this line (but first be sure to edit +# the WATCH_DAEMONS line to reflect the daemons you are actually using): +watch_options="-Az -b_ -r/etc/init.d/quagga_restart_%s -s/etc/init.d/quagga_start_%s -k/etc/init.d/quagga_stop_%s" diff --git a/packages/quagga/files/watchquagga.init b/packages/quagga/files/watchquagga.init new file mode 100644 index 0000000000..79be16d3e6 --- /dev/null +++ b/packages/quagga/files/watchquagga.init @@ -0,0 +1,57 @@ +#!/bin/sh +# +# /etc/init.d/watchquagga -- start/stop the Quagga watchdog +# +PATH=/bin:/usr/bin:/sbin:/usr/sbin + +# Load configuration +test -f /etc/default/watchquagga && . /etc/default/watchquagga + +# Check that there are daemons to be monitored. +[ -z "$watch_daemons" ] && exit 0 + +pidfile="/var/run/quagga/watchquagga.pid" + +case "$1" in + start) + echo -n "Starting quagga watchdog daemon: watchquagga" + start-stop-daemon --start \ + --pidfile $pidfile \ + --exec /usr/lib/quagga/watchquagga \ + -- -d $watch_options $watch_daemons + echo "." + ;; + + stop) + echo -n "Stopping quagga watchdog daemon: watchquagga" + start-stop-daemon --stop --quiet \ + --pidfile $pidfile + echo "." + ;; + + status) + echo -n "watchquagga " + res=1 + [ -e $pidfile ] && kill -0 `cat $pidfile` 2> /dev/null + if [ $? -eq 0 ]; then + echo "(pid `cat $pidfile`) is running..." + res=0 + else + echo "is stopped..." + fi + exit $res + ;; + + restart|force-reload) + $0 stop $2 + sleep 1 + $0 start $2 + ;; + + *) + echo "Usage: /etc/init.d/watchquagga {start|stop|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 |