diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-10-30 13:44:40 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-10-30 13:44:40 -0700 |
commit | e987d4d534ea2f1873658c08501fa21b4d3960bb (patch) | |
tree | f913da231fde2ea4cfa3ea00803712213edab5b1 | |
parent | 660670e2232546c94da9785757c2c506349be6f5 (diff) | |
download | vyatta-op-e987d4d534ea2f1873658c08501fa21b4d3960bb.tar.gz vyatta-op-e987d4d534ea2f1873658c08501fa21b4d3960bb.zip |
Need full path to ss command
Since command is not in normal users path, need to add full path
to ss command.
-rw-r--r-- | templates/show/tcp/all/node.def | 2 | ||||
-rw-r--r-- | templates/show/tcp/node.def | 2 | ||||
-rw-r--r-- | templates/show/tcp/numeric/node.def | 2 | ||||
-rw-r--r-- | templates/show/udp/node.def | 2 | ||||
-rw-r--r-- | templates/show/udp/numeric/node.def | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/templates/show/tcp/all/node.def b/templates/show/tcp/all/node.def index 52c3893..6aa1cae 100644 --- a/templates/show/tcp/all/node.def +++ b/templates/show/tcp/all/node.def @@ -1,2 +1,2 @@ help: show all TCP connections -run: ss -t -a +run: /sbin/ss -t -a diff --git a/templates/show/tcp/node.def b/templates/show/tcp/node.def index 07d04a6..8b6c99b 100644 --- a/templates/show/tcp/node.def +++ b/templates/show/tcp/node.def @@ -1,2 +1,2 @@ help: show TCP connection information -run: ss -t -r +run: /sbin/ss -t -r diff --git a/templates/show/tcp/numeric/node.def b/templates/show/tcp/numeric/node.def index 35a13fe..7df9efe 100644 --- a/templates/show/tcp/numeric/node.def +++ b/templates/show/tcp/numeric/node.def @@ -1,2 +1,2 @@ help: show TCP connection without resolving names -run: ss -t -n +run: /sbin/ss -t -n diff --git a/templates/show/udp/node.def b/templates/show/udp/node.def index 29e7548..ef9e55f 100644 --- a/templates/show/udp/node.def +++ b/templates/show/udp/node.def @@ -1,2 +1,2 @@ help: show UDP socket information -run: ss -u -a -r +run: /sbin/ss -u -a -r diff --git a/templates/show/udp/numeric/node.def b/templates/show/udp/numeric/node.def index 6eae466..cb43a91 100644 --- a/templates/show/udp/numeric/node.def +++ b/templates/show/udp/numeric/node.def @@ -1,2 +1,2 @@ help: show UDP socket information without resolving names -run: ss -u -a -n +run: /sbin/ss -u -a -n |