diff options
author | Chris Lumens <clumens@redhat.com> | 2012-03-13 17:02:57 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2012-03-14 13:31:41 -0400 |
commit | ba1c2b8fb06654c9fb1c89ea13fa453bbc24dbd0 (patch) | |
tree | 14c8c34dd49e3fdfc71939783034f82d54f31412 /anaconda | |
parent | af7bcb9939b8b85d4b170a1697339286a806c033 (diff) | |
download | anaconda-ba1c2b8fb06654c9fb1c89ea13fa453bbc24dbd0.tar.gz anaconda-ba1c2b8fb06654c9fb1c89ea13fa453bbc24dbd0.tar.xz anaconda-ba1c2b8fb06654c9fb1c89ea13fa453bbc24dbd0.zip |
Do base kickstart package selections after the payload is set up.
This is the earliest time we can do this, and doing it from the end of the
thread means it's out of the way.
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -814,7 +814,7 @@ if __name__ == "__main__": initThreading() threadMgr.add(Thread(name="AnaStorageThread", target=storageInitialize, args=(anaconda.storage, ksdata, anaconda.protected))) - threadMgr.add(Thread(name="AnaPayloadThread", target=payloadInitialize, args=(anaconda.storage, anaconda.payload))) + threadMgr.add(Thread(name="AnaPayloadThread", target=payloadInitialize, args=(anaconda.storage, ksdata, anaconda.payload))) atexit.register(exitHandler, ksdata.reboot, anaconda.storage) # FIXME: This will need to be made cleaner once this file starts to take |