summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-10-24 15:51:22 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-10-24 15:51:22 -0700
commit9aae78f8dff2d6e26feeef01ba1cb64201039b77 (patch)
tree406f3ccc466723c48b8be077dfc0a730e62c40b9 /scripts
parent388691e7df1d4c3eefed7a974a9c2591d1fafaf5 (diff)
downloadvyatta-op-9aae78f8dff2d6e26feeef01ba1cb64201039b77.tar.gz
vyatta-op-9aae78f8dff2d6e26feeef01ba1cb64201039b77.zip
Fix references to ethtool
Since ethtool is in /usr/sbin, it is not in the command search path of admin user, so a fully qualify path. Bugfix 3832
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-show-interfaces10
1 files changed, 4 insertions, 6 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 ()