diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-02-25 09:13:23 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-02-25 09:13:23 -0800 |
commit | b2909211c50e8040f1538aa9062560f6640f88c1 (patch) | |
tree | b54d9c8ddcf54c949b90a463f2e2ed1e9691ec81 | |
parent | 9c1009f00a9f4be7a55cf315c7daddd7260fa035 (diff) | |
download | vyatta-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-x | scripts/vyatta-show-interfaces | 2 |
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 |