ethtool: add pre-up settings to the executor

This commit is contained in:
Ariadne Conill 2020-09-21 08:20:43 -06:00
parent 63ec8d4b3b
commit b0480a3343

View file

@ -1,2 +1,13 @@
#!/bin/sh
set -e
case "$PHASE" in
pre-up)
settings=
[ -n "$IF_ETHTOOL_ETHERNET_PORT" ] && settings="port $IF_ETHTOOL_ETHERNET_PORT"
[ -n "$IF_ETHTOOL_MSGLVL" ] && settings="msglvl $IF_ETHTOOL_MSGLVL"
[ -z "$settings" ] || ethtool --change "$IFACE" $settings
;;
up)
;;
esac