diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-18 22:28:47 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-18 22:29:03 +0200 |
commit | 61051911bf1e3da4f5939dc25177a63489e4a6be (patch) | |
tree | acd20d2e8921847adf6bdd76272719e7d01f491f /op-mode-definitions/ipv4-route.xml.in | |
parent | 432e5048db19ddf5a7505866421f77bb01635d08 (diff) | |
download | vyos-1x-61051911bf1e3da4f5939dc25177a63489e4a6be.tar.gz vyos-1x-61051911bf1e3da4f5939dc25177a63489e4a6be.zip |
op-mode: drop full path to iproute2 binary
(cherry picked from commit 21d97ba0651fc20bded91e22e00a402d0044da3c)
Diffstat (limited to 'op-mode-definitions/ipv4-route.xml.in')
-rw-r--r-- | op-mode-definitions/ipv4-route.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/op-mode-definitions/ipv4-route.xml.in b/op-mode-definitions/ipv4-route.xml.in index 1bda3ac11..aab3df0f1 100644 --- a/op-mode-definitions/ipv4-route.xml.in +++ b/op-mode-definitions/ipv4-route.xml.in @@ -43,7 +43,7 @@ <list><x.x.x.x></list> </completionHelp> </properties> - <command>sudo /sbin/ip neigh flush to "$5"</command> + <command>sudo ip neigh flush to "$5"</command> </tagNode> <tagNode name="interface"> <properties> @@ -52,7 +52,7 @@ <script>${vyos_completion_dir}/list_interfaces.py</script> </completionHelp> </properties> - <command>sudo /sbin/ip neigh flush dev "$5"</command> + <command>sudo ip neigh flush dev "$5"</command> </tagNode> </children> </node> @@ -66,7 +66,7 @@ <properties> <help>Flush the kernel route cache</help> </properties> - <command>sudo /sbin/ip route flush cache</command> + <command>sudo ip route flush cache</command> </leafNode> <tagNode name="cache"> @@ -76,7 +76,7 @@ <list><x.x.x.x> <x.x.x.x/x></list> </completionHelp> </properties> - <command>sudo /sbin/ip route flush cache "$5"</command> + <command>sudo ip route flush cache "$5"</command> </tagNode> </children> </node> |