From: Barış Metin <Talip-Baris.Metin@sophia.inria.fr>
Date: Mon, 23 Mar 2009 16:28:02 +0000 (+0000)
Subject: move the comment as it causes problems with e100 and e1000.
X-Git-Tag: BootManager-4.3-3~3
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=ea8b321df93614902dc627096744b35e225df9d8;p=bootmanager.git

move the comment as it causes problems with e100 and e1000.
this fixes the interface problem we had with plc 4.3 / centos5
---

diff --git a/source/steps/WriteModprobeConfig.py b/source/steps/WriteModprobeConfig.py
index e193384..8984e41 100644
--- a/source/steps/WriteModprobeConfig.py
+++ b/source/steps/WriteModprobeConfig.py
@@ -71,7 +71,8 @@ def Run( vars, log, filename = "/etc/modprobe.conf"):
     # the 'alias ethX a_mod' lines in modprobe.conf
     count=0
     for a_mod in sysmods[systeminfo.MODULE_CLASS_NETWORK]:
-        line="alias eth%d %s # Want to comment this out in the future.\n" % (count,a_mod) 
+        line="# Want to comment this out in the future.\n"
+        line="alias eth%d %s\n" % (count,a_mod) 
         modulesconf_file.write(line)
         count=count+1