diff options
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 |