On Fri, 4 May 2007, Nicholas Byrne wrote:
I tracked this down to Anaconda's dispatch.py ordering, it has:
("methodcomplete", doMethodComplete, ), ("dopostaction", doPostAction, ),
which in my opinion is wrong, (methodcomplete does the eject). It should be the other way around i.e.
("dopostaction", doPostAction, ), ("methodcomplete", doMethodComplete, ),
Has this been done on purpose, i would think a lot of people access the CDROM in post scripts... or is this just a bug imported from the upstream vendors version?
It's imported from upstream - this is from the unpatched tarball:
... ("methodcomplete", doMethodComplete, ), ("dopostaction", doPostAction, ), ("complete", ), ...