diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-23 17:24:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 17:24:26 +0100 |
commit | c8964f9564c5b6c29c7e381280d17004343749b2 (patch) | |
tree | 41b6de888de4b6bbe0126610406999fcf521749c | |
parent | 53fc11a0680520d2771cb68fe6ac363f104008ff (diff) | |
parent | 25ac10a2f4d216b18ef93ae5bdd3e39e0cc25239 (diff) | |
download | vyos-1x-c8964f9564c5b6c29c7e381280d17004343749b2.tar.gz vyos-1x-c8964f9564c5b6c29c7e381280d17004343749b2.zip |
Merge pull request #260 from kroy-the-rabbit/patch-2
T2153: fix op_mode traceroute circular reference
-rw-r--r-- | op-mode-definitions/traceroute.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/op-mode-definitions/traceroute.xml b/op-mode-definitions/traceroute.xml index d16e9e3b8..d623fe103 100644 --- a/op-mode-definitions/traceroute.xml +++ b/op-mode-definitions/traceroute.xml @@ -12,7 +12,7 @@ <list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list> </completionHelp> </properties> - <command>traceroute $2</command> + <command>/usr/bin/traceroute $2</command> </tagNode> <tagNode name="ipv4"> <properties> @@ -21,7 +21,7 @@ <list><hostname> <x.x.x.x></list> </completionHelp> </properties> - <command>traceroute -4 $3</command> + <command>/usr/bin/traceroute -4 $3</command> </tagNode> <tagNode name="ipv6"> <properties> @@ -30,7 +30,7 @@ <list><hostname> <h:h:h:h:h:h:h:h></list> </completionHelp> </properties> - <command>traceroute -6 $3</command> + <command>/usr/bin/traceroute -6 $3</command> </tagNode> <tagNode name="vrf"> <properties> |