[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] Fix --mtu option to kickstart network command (#689081)
- From: Ian Ward Comfort <icomfort stanford edu>
- To: anaconda-devel-list redhat com
- Subject: [PATCH] Fix --mtu option to kickstart network command (#689081)
- Date: Fri, 18 Mar 2011 23:08:20 -0700
See the Bugzilla issue in the subject. This is based on rhel6-branch (but I
can rebase if that's wrong) and can be pulled from:
git://github.com/icomfort/anaconda.git rhel6-fix-mtu
Please keep me cc'd on any discussion; I am not subscribed to the list.
-- >8 --
mtu was not among the fields that NetworkData.execute was copying from the
kickstart data structure to the NetworkDevice object.
---
kickstart.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/kickstart.py b/kickstart.py
index 3ce4ad1..5e3a15f 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -631,6 +631,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.3.2
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]