diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-08-06 17:12:51 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-08-06 17:12:51 +0200 |
commit | 53a00c6ab40d958f9e16713c7c6459c645d18ca6 (patch) | |
tree | b992da76a98881ec373f5b5ebf642e287fd48a1e /templates/show/system/connections/udp | |
parent | 3500541316223b792805c9f816ab986c454892e7 (diff) | |
download | vyatta-op-53a00c6ab40d958f9e16713c7c6459c645d18ca6.tar.gz vyatta-op-53a00c6ab40d958f9e16713c7c6459c645d18ca6.zip |
T768: correct the path to ss in "run show connections" scripts.
Diffstat (limited to 'templates/show/system/connections/udp')
-rw-r--r-- | templates/show/system/connections/udp/node.def | 2 | ||||
-rw-r--r-- | templates/show/system/connections/udp/numeric/node.def | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/show/system/connections/udp/node.def b/templates/show/system/connections/udp/node.def index ef9e55f..29e7548 100644 --- a/templates/show/system/connections/udp/node.def +++ b/templates/show/system/connections/udp/node.def @@ -1,2 +1,2 @@ help: show UDP socket information -run: /sbin/ss -u -a -r +run: ss -u -a -r diff --git a/templates/show/system/connections/udp/numeric/node.def b/templates/show/system/connections/udp/numeric/node.def index cb43a91..6eae466 100644 --- a/templates/show/system/connections/udp/numeric/node.def +++ b/templates/show/system/connections/udp/numeric/node.def @@ -1,2 +1,2 @@ help: show UDP socket information without resolving names -run: /sbin/ss -u -a -n +run: ss -u -a -n |