diff options
author | Saurabh Mohan <saurabh@vyatta.com> | 2013-06-17 14:59:02 -0700 |
---|---|---|
committer | Saurabh Mohan <saurabh@vyatta.com> | 2013-06-17 14:59:02 -0700 |
commit | 45fe8a8c09ec457a71e04ab153625b42d2717ff6 (patch) | |
tree | 97f1f60ae4e7133d254db91e4a2e18e6db9ae3b5 | |
parent | 34ae26d8b6423eaba2d3ad54943665cbd343a256 (diff) | |
download | vyatta-op-45fe8a8c09ec457a71e04ab153625b42d2717ff6.tar.gz vyatta-op-45fe8a8c09ec457a71e04ab153625b42d2717ff6.zip |
8970: Fix for show monitor
-rw-r--r-- | templates/show/monitoring/protocols/ripng/node.def | 7 |
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 |