From ea8b321df93614902dc627096744b35e225df9d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Mon, 23 Mar 2009 16:28:02 +0000 Subject: [PATCH] move the comment as it causes problems with e100 and e1000. this fixes the interface problem we had with plc 4.3 / centos5 --- source/steps/WriteModprobeConfig.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.43.0