diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-11-08 13:11:14 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-11-08 13:11:14 -0800 |
commit | eed00988fc2ad51faf4f3475193cff45f552fe59 (patch) | |
tree | 414e560bdbb809edd1036844de31f84da16b9159 /scripts/vyatta-identify-interface.pl | |
parent | 5d65c72b5de2cb1b7bb698cca6be833b7c194796 (diff) | |
download | vyatta-op-eed00988fc2ad51faf4f3475193cff45f552fe59.tar.gz vyatta-op-eed00988fc2ad51faf4f3475193cff45f552fe59.zip |
Fix path to ethtool
In Squeeze, ethtool moved from /usr/sbin to /sbin
Diffstat (limited to 'scripts/vyatta-identify-interface.pl')
-rwxr-xr-x | scripts/vyatta-identify-interface.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-identify-interface.pl b/scripts/vyatta-identify-interface.pl index 0170b68..1cfdb36 100755 --- a/scripts/vyatta-identify-interface.pl +++ b/scripts/vyatta-identify-interface.pl @@ -41,7 +41,7 @@ if ($cpid == 0) { # child print "Interface $intf should be blinking now.\n"; print "Press Enter to stop...\n"; - exec("/usr/sbin/ethtool -p $intf"); + exec("/sbin/ethtool -p $intf"); # not reachable exit 0; } else { |