[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH rhel5-branch] Quote ETHTOOL_OPTS value in stage 2 (#674473)
- From: Radek Vykydal <rvykydal redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH rhel5-branch] Quote ETHTOOL_OPTS value in stage 2 (#674473)
- Date: Tue, 29 Mar 2011 13:43:48 +0200
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"
--
1.7.4
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]