first commit
This commit is contained in:
14
etc_org/network/if-pre-up.d/ethtool
Executable file
14
etc_org/network/if-pre-up.d/ethtool
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
ETHTOOL=/sbin/ethtool
|
||||
|
||||
test -x $ETHTOOL || exit 0
|
||||
|
||||
[ "$IFACE" != "lo" ] || exit 0
|
||||
|
||||
# Gather together the mixed bag of settings applied with -s/--change
|
||||
SETTINGS="\
|
||||
${IF_ETHERNET_PORT:+ port $IF_ETHERNET_PORT}\
|
||||
${IF_DRIVER_MESSAGE_LEVEL:+ msglvl $IF_DRIVER_MESSAGE_LEVEL}\
|
||||
"
|
||||
[ -z "$SETTINGS" ] || $ETHTOOL --change "$IFACE" $SETTINGS
|
Reference in New Issue
Block a user