From: Masahiro Matsuya<mmatsuya redhat com>
Signed-off-by: Radek Vykydal<rvykydal redhat com>
---
network.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/network.py b/network.py
index 84776e4..ff5e06e 100644
--- a/network.py
+++ b/network.py
@@ -149,6 +149,8 @@ class NetworkDevice(SimpleConfigFile):
# make sure we include autoneg in the ethtool line
elif key == 'ETHTOOL_OPTS' and self.info[key].find("autoneg")== -1:
s = s + key + """="autoneg off %s"\n""" % (self.info[key])
+ elif key == 'ETHTOOL_OPTS':
+ s = s + key + """="%s"\n""" % (self.info[key])
elif self.info[key] is not None:
s = s + key + "=" + self.info[key] + "\n"