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 | |
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')
5 files changed, 5 insertions, 5 deletions
diff --git a/templates/show/system/connections/tcp/all/node.def b/templates/show/system/connections/tcp/all/node.def index 6aa1cae..52c3893 100644 --- a/templates/show/system/connections/tcp/all/node.def +++ b/templates/show/system/connections/tcp/all/node.def @@ -1,2 +1,2 @@ help: show all TCP connections -run: /sbin/ss -t -a +run: ss -t -a diff --git a/templates/show/system/connections/tcp/node.def b/templates/show/system/connections/tcp/node.def index 8b6c99b..07d04a6 100644 --- a/templates/show/system/connections/tcp/node.def +++ b/templates/show/system/connections/tcp/node.def @@ -1,2 +1,2 @@ help: show TCP connection information -run: /sbin/ss -t -r +run: ss -t -r diff --git a/templates/show/system/connections/tcp/numeric/node.def b/templates/show/system/connections/tcp/numeric/node.def index 7df9efe..35a13fe 100644 --- a/templates/show/system/connections/tcp/numeric/node.def +++ b/templates/show/system/connections/tcp/numeric/node.def @@ -1,2 +1,2 @@ help: show TCP connection without resolving names -run: /sbin/ss -t -n +run: ss -t -n 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 |