diff -Nur -x '*.orig' -x '*.rej' anaconda-10.1.1.37/dispatch.py mezzanine_patched_anaconda-10.1.1.37/dispatch.py --- anaconda-10.1.1.37/dispatch.py 2006-04-06 05:53:43.058026520 +1000 +++ mezzanine_patched_anaconda-10.1.1.37/dispatch.py 2006-04-06 05:52:50.871144077 +1000 @@ -155,7 +155,7 @@ ("writeksconfig", writeKSConfiguration, ("id", "instPath")), ("setfilecon", setFileCons, ("instPath","id.partitions")), ("copylogs", copyAnacondaLogs, ("instPath",)), - ("dopostaction", doPostAction, ("id", "instPath")), + ("dopostaction", doPostAction, ("id", "instPath", "intf")), ("methodcomplete", doMethodComplete, ("method",)), ("complete", ()), ] diff -Nur -x '*.orig' -x '*.rej' anaconda-10.1.1.37/installclass.py mezzanine_patched_anaconda-10.1.1.37/installclass.py --- anaconda-10.1.1.37/installclass.py 2005-07-14 03:16:19.000000000 +1000 +++ mezzanine_patched_anaconda-10.1.1.37/installclass.py 2006-04-06 05:52:50.872143902 +1000 @@ -63,7 +63,7 @@ # we can use a different install data class installDataClass = InstallData - def postAction(self, rootPath, serial): + def postAction(self, rootPath, serial, intf): pass def setBootloader(self, id, useLilo=0, location=None, linear=1, diff -Nur -x '*.orig' -x '*.rej' anaconda-10.1.1.37/kickstart.py mezzanine_patched_anaconda-10.1.1.37/kickstart.py --- anaconda-10.1.1.37/kickstart.py 2005-07-22 03:30:21.000000000 +1000 +++ mezzanine_patched_anaconda-10.1.1.37/kickstart.py 2006-04-06 05:52:50.872143902 +1000 @@ -98,7 +98,7 @@ class KickstartBase(BaseInstallClass): name = "kickstart" - def postAction(self, rootPath, serial): + def postAction(self, rootPath, serial, intf): log("Running kickstart %%post script(s)") for script in self.postScripts: script.run(rootPath, serial) diff -Nur -x '*.orig' -x '*.rej' anaconda-10.1.1.37/packages.py mezzanine_patched_anaconda-10.1.1.37/packages.py --- anaconda-10.1.1.37/packages.py 2006-04-06 05:53:42.836065296 +1000 +++ mezzanine_patched_anaconda-10.1.1.37/packages.py 2006-04-06 05:53:15.307874568 +1000 @@ -54,8 +54,8 @@ sys.exit(0) return DISPATCH_FORWARD -def doPostAction(id, instPath): - id.instClass.postAction(instPath, flags.serial) +def doPostAction(id, instPath, intf): + id.instClass.postAction(instPath, flags.serial, intf) def firstbootConfiguration(id, instPath): if id.firstboot == FIRSTBOOT_RECONFIG: