summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog19
-rwxr-xr-xdebian/vyatta-quagga.init.d3
2 files changed, 21 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 6d868285..ee9054fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,22 @@
+vyatta-quagga (0.99.11-16) unstable; urgency=low
+
+ [ Stephen Hemminger ]
+ * Only start zebra as part of initial boot
+
+ [ Chris Caputo ]
+ * Compiler warning fixes for when --enable-snmp is configured.
+ * Fix "show ip bgp dampened-paths" garbage output.
+
+ [ Joakim Tjernlund ]
+ * Don't delete too many routes.
+
+ [ Chris Caputo ]
+ * 64-bit fix for lib/smux.h SNMP_INTEGER() macro
+
+ [ Stephen Hemminger ]
+
+ -- Stephen Hemminger <stephen.hemminger@vyatta.com> Wed, 06 May 2009 15:35:39 -0700
+
vyatta-quagga (0.99.11-15) unstable; urgency=low
[ Denis Ovsienko ]
diff --git a/debian/vyatta-quagga.init.d b/debian/vyatta-quagga.init.d
index 454aba20..b4bc3c81 100755
--- a/debian/vyatta-quagga.init.d
+++ b/debian/vyatta-quagga.init.d
@@ -37,10 +37,11 @@ vyatta_quagga_start ()
if [ $# -gt 0 ] ; then
daemons=( $* )
else
+ # Only start zebra
daemons=( zebra )
fi
- log_daemon_msg "Starting routing services"
+ log_daemon_msg "Starting routing manager"
for daemon in ${daemons[@]} ; do
log_progress_msg "$daemon"
/opt/vyatta/sbin/quagga-manager start $daemon || \