X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FWriteModprobeConfig.py;h=9549c080650192f8082e627346272b4576124a86;hb=83aabfdd97b47a41e3d62b91d8aba0ffca617c0b;hp=8984e41dfcd461b5de419721d4aa243561793f49;hpb=ea8b321df93614902dc627096744b35e225df9d8;p=bootmanager.git diff --git a/source/steps/WriteModprobeConfig.py b/source/steps/WriteModprobeConfig.py index 8984e41..9549c08 100644 --- a/source/steps/WriteModprobeConfig.py +++ b/source/steps/WriteModprobeConfig.py @@ -72,7 +72,7 @@ def Run( vars, log, filename = "/etc/modprobe.conf"): count=0 for a_mod in sysmods[systeminfo.MODULE_CLASS_NETWORK]: line="# Want to comment this out in the future.\n" - line="alias eth%d %s\n" % (count,a_mod) + line+="alias eth%d %s\n" % (count,a_mod) modulesconf_file.write(line) count=count+1