diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-03 19:10:10 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-08-03 19:10:19 +0200 |
commit | 6301c560df544ddac9838d0489941d84748cced3 (patch) | |
tree | 1d39f4a162bdce10dd93f8c74d430b0dc2fd980e /op-mode-definitions/force-ipv6-rd.xml | |
parent | f2b84c3d6fe292944d0b0f3b0ab4a73629b0318a (diff) | |
download | vyos-1x-6301c560df544ddac9838d0489941d84748cced3.tar.gz vyos-1x-6301c560df544ddac9838d0489941d84748cced3.zip |
ipv6-tool: op-mode: T2724: use full path to binary and quote arguments
Diffstat (limited to 'op-mode-definitions/force-ipv6-rd.xml')
-rw-r--r-- | op-mode-definitions/force-ipv6-rd.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/op-mode-definitions/force-ipv6-rd.xml b/op-mode-definitions/force-ipv6-rd.xml index 722cb67bf..8c901af25 100644 --- a/op-mode-definitions/force-ipv6-rd.xml +++ b/op-mode-definitions/force-ipv6-rd.xml @@ -4,26 +4,26 @@ <children> <node name="ipv6-rd"> <properties> - <help>IPv6 Router Discovery tool</help> + <help>IPv6 Router Discovery</help> </properties> <children> <tagNode name="interface"> <properties> - <help>IPv6 Router Discovery tool on a specific interface</help> + <help>IPv6 Router Discovery on specified interface</help> <completionHelp> <script>${vyos_completion_dir}/list_interfaces.py</script> </completionHelp> </properties> - <command>rdisc6 $4</command> + <command>/usr/bin/rdisc6 "$4"</command> <children> <tagNode name="address"> <properties> - <help>The IP address of the target</help> + <help>IPv6 address of target</help> <completionHelp> <list><h:h:h:h:h:h:h:h></list> </completionHelp> </properties> - <command>rdisc6 $6 $4 -m</command> + <command>/usr/bin/rdisc6 -m "$6" "$4"</command> </tagNode> </children> </tagNode> |