[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH rhel6-branch] Fix --mtu option to kickstart network command (#689081)
- From: Radek Vykydal <rvykydal redhat com>
- To: anaconda-devel-list redhat com
- Cc: Ian Ward Comfort <icomfort stanford edu>
- Subject: [PATCH rhel6-branch] Fix --mtu option to kickstart network command (#689081)
- Date: Fri, 10 Jun 2011 13:32:18 +0200
From: Ian Ward Comfort <icomfort stanford edu>
mtu was not among the fields that NetworkData.execute was copying from the
kickstart data structure to the NetworkDevice object.
Resolves: rhbz#689081
---
kickstart.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/kickstart.py b/kickstart.py
index 56d67af..d882b6a 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -633,6 +633,9 @@ class NetworkData(commands.network.RHEL6_NetworkData):
else:
dev.set (("ONBOOT", "no"))
+ if self.mtu:
+ dev.set(("MTU", self.mtu))
+
if self.ethtool:
dev.set(("ETHTOOL_OPTS", self.ethtool))
--
1.7.4
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]