summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-02-25 09:13:23 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-02-25 09:13:23 -0800
commitb2909211c50e8040f1538aa9062560f6640f88c1 (patch)
treeb54d9c8ddcf54c949b90a463f2e2ed1e9691ec81
parent9c1009f00a9f4be7a55cf315c7daddd7260fa035 (diff)
downloadvyatta-op-b2909211c50e8040f1538aa9062560f6640f88c1.tar.gz
vyatta-op-b2909211c50e8040f1538aa9062560f6640f88c1.zip
no longer need sudo for ethtool
Kernel allows the use of ethtool without requiring root access.
-rwxr-xr-xscripts/vyatta-show-interfaces2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-show-interfaces b/scripts/vyatta-show-interfaces
index 75d0815..112f35b 100755
--- a/scripts/vyatta-show-interfaces
+++ b/scripts/vyatta-show-interfaces
@@ -110,7 +110,7 @@ _show_itf_physical ()
{
if type -t ethtool &>/dev/null ; then
for eth ; do
- sudo ethtool $eth
+ ethtool $eth
echo
done
fi