summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaurabh Mohan <saurabh@vyatta.com>2013-06-17 14:59:02 -0700
committerSaurabh Mohan <saurabh@vyatta.com>2013-06-17 14:59:02 -0700
commit45fe8a8c09ec457a71e04ab153625b42d2717ff6 (patch)
tree97f1f60ae4e7133d254db91e4a2e18e6db9ae3b5
parent34ae26d8b6423eaba2d3ad54943665cbd343a256 (diff)
downloadvyatta-op-45fe8a8c09ec457a71e04ab153625b42d2717ff6.tar.gz
vyatta-op-45fe8a8c09ec457a71e04ab153625b42d2717ff6.zip
8970: Fix for show monitor
-rw-r--r--templates/show/monitoring/protocols/ripng/node.def7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/show/monitoring/protocols/ripng/node.def b/templates/show/monitoring/protocols/ripng/node.def
index 7900bb7..f19892b 100644
--- a/templates/show/monitoring/protocols/ripng/node.def
+++ b/templates/show/monitoring/protocols/ripng/node.def
@@ -1,2 +1,7 @@
help: Show RIPNG protocol debugging flags
-run: vtysh -c "show debugging ripng"
+run: if [ ! -e "/usr/sbin/zebra" ]
+ then
+ vtysh -c "show debugging ipv6 rip"
+ else
+ vtysh -c "show debugging ripng"
+ fi