diff options
author | Bill Nottingham <notting@redhat.com> | 2003-06-27 20:15:25 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-06-27 20:15:25 +0000 |
commit | c49ae566f4f7c58a79b32a8fc17005c0f9495402 (patch) | |
tree | 0775788b069e387c8971e2767a9ddf3b20c9ed44 /sysconfig | |
parent | c8b2bc2f85ae344705b995778fa2c5bb2d31ff72 (diff) | |
download | initscripts-c49ae566f4f7c58a79b32a8fc17005c0f9495402.tar initscripts-c49ae566f4f7c58a79b32a8fc17005c0f9495402.tar.gz initscripts-c49ae566f4f7c58a79b32a8fc17005c0f9495402.tar.bz2 initscripts-c49ae566f4f7c58a79b32a8fc17005c0f9495402.tar.xz initscripts-c49ae566f4f7c58a79b32a8fc17005c0f9495402.zip |
support setting device options with ethtool opts
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifup | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index 13232704..4aa0b55f 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -236,6 +236,10 @@ if [ -n "${DYNCONFIG}" ]; then exit 1 fi + if [ -n "$ETHTOOL_OPTS" ] ; then + /sbin/ethtool -s ${REALDEVICE} $ETHTOOL_OPTS + fi + # DHCP clients need DNS to be available, and we don't know # what DNS server they're using until they are done. FWHACK= @@ -286,6 +290,10 @@ else exit 1 fi + if [ -n "$ETHTOOL_OPTS" ] ; then + /sbin/ethtool -s ${REALDEVICE} $ETHTOOL_OPTS + fi + if ! arping -q -c 2 -w 3 -D -I ${REALDEVICE} ${IPADDR} ; then echo $"Error, some other host already uses address ${IPADDR}." exit 1 |