diff options
-rwxr-xr-x | scripts/vyatta-show-interfaces | 10 | ||||
-rw-r--r-- | templates/show/interfaces/ethernet/node.tag/statistics/node.def | 3 |
2 files changed, 5 insertions, 8 deletions
diff --git a/scripts/vyatta-show-interfaces b/scripts/vyatta-show-interfaces index 8be076f..b49dbf7 100755 --- a/scripts/vyatta-show-interfaces +++ b/scripts/vyatta-show-interfaces @@ -105,12 +105,10 @@ _show_itf_stats () _show_itf_physical () { - if type -t ethtool &>/dev/null ; then - for eth ; do - sudo ethtool $eth - echo - done - fi + for eth ; do + sudo /usr/sbin/ethtool $eth + echo + done } _usage () diff --git a/templates/show/interfaces/ethernet/node.tag/statistics/node.def b/templates/show/interfaces/ethernet/node.tag/statistics/node.def index 0c66031..5414715 100644 --- a/templates/show/interfaces/ethernet/node.tag/statistics/node.def +++ b/templates/show/interfaces/ethernet/node.tag/statistics/node.def @@ -1,4 +1,3 @@ help: Show physical device statistics for specified ethernet interface allowed: "" -run: ethtool -S "$4" - +run: /usr/sbin/ethtool -S "$4" |