summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2012-01-07 15:47:48 -0600
committerWilliam Hubbs <williamh@gentoo.org>2012-01-07 15:47:48 -0600
commitd02d3af02e4254b04949de546c5d53af82cc2fc2 (patch)
tree54c3c9b2ec106449af60039fab68cd7ce58880b8
parent61e05331d14a08fa909526fda15470a1ca4927dd (diff)
downloadopenrc-d02d3af02e4254b04949de546c5d53af82cc2fc2.tar.gz
openrc-d02d3af02e4254b04949de546c5d53af82cc2fc2.tar.bz2
openrc-d02d3af02e4254b04949de546c5d53af82cc2fc2.tar.xz
net: make lookup of ethtool dynamic
The ethtool module checked in two places for the ethtool binary; now we look for it in the path.
-rw-r--r--net/ethtool.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/net/ethtool.sh b/net/ethtool.sh
index fecb7b9..ba5719d 100644
--- a/net/ethtool.sh
+++ b/net/ethtool.sh
@@ -1,13 +1,12 @@
# Copyright (c) 2011 by Gentoo Foundation
# Released under the 2-clause BSD license.
-_ethtool() {
- echo /usr/sbin/ethtool
-}
-
ethtool_depend()
{
- program $(_ethtool)
+ local x
+ x=$(_which ethtool)
+ [ -z "$x" ] && return 1
+ program $x
before interface
}