diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-10-12 17:26:55 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-10-12 17:26:55 +0000 |
commit | 8698bb3f405d46e0aaf0e96fde443eac5927ff68 (patch) | |
tree | dc567e18b77eaf90ae94318679d395c26beb4521 /packages.py | |
parent | 799e41772d2673318c234819b208f235a658b9ac (diff) | |
download | anaconda-8698bb3f405d46e0aaf0e96fde443eac5927ff68.tar.gz anaconda-8698bb3f405d46e0aaf0e96fde443eac5927ff68.tar.xz anaconda-8698bb3f405d46e0aaf0e96fde443eac5927ff68.zip |
2004-10-12 Jeremy Katz <katzj@redhat.com>
* packages.py (doPostInstall): Add rhgb in post-install, not
doInstall (from msw on anaconda-devel-list)
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages.py b/packages.py index a47f92648..0863e7303 100644 --- a/packages.py +++ b/packages.py @@ -1055,10 +1055,6 @@ def doInstall(method, id, intf, instPath): except Exception, e: log("failed to unlink /var/lib/rpm: %s" %(e,)) - if id.grpset.hdrlist.has_key("rhgb") and id.grpset.hdrlist["rhgb"].isSelected(): - log("rhgb installed, adding to boot loader config") - id.bootloader.args.append("rhgb quiet") - instLog.close () id.instProgress = None @@ -1195,6 +1191,10 @@ def doPostInstall(method, id, intf, instPath): # of working afterwards. FIXME: this is a hack migrateMouseConfig(instPath, instLogName) + if id.grpset.hdrlist.has_key("rhgb") and id.grpset.hdrlist["rhgb"].isSelected(): + log("rhgb installed, adding to boot loader config") + id.bootloader.args.append("rhgb quiet") + w.set(5) # FIXME: hack to install the comps package |