diff options
author | Matt Wilson <msw@redhat.com> | 2001-08-24 20:12:09 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-08-24 20:12:09 +0000 |
commit | b1e1bb8040e05c95d55711e2e18d02a99710ac4f (patch) | |
tree | 1c2ae712d726cc6a80a2a9ed3bc5da7e46af2c29 /instdata.py | |
parent | 9238f3d7e0b01598ba100a7e1f2dd0f1d1337ade (diff) | |
download | anaconda-b1e1bb8040e05c95d55711e2e18d02a99710ac4f.tar.gz anaconda-b1e1bb8040e05c95d55711e2e18d02a99710ac4f.tar.xz anaconda-b1e1bb8040e05c95d55711e2e18d02a99710ac4f.zip |
log (most) of the new packages being installed to the upgrade.log. Check ONLY the on-system database to see if packages are installed or not, this fixes a false positive on the hasX check when moving from 7.0 to 7.2, when XFree86-xfs files move to XFree86, thus it gets selected. When hasX was on it would pull in GNOME too, which is excessive. (inspired by #50171)
Diffstat (limited to 'instdata.py')
-rw-r--r-- | instdata.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/instdata.py b/instdata.py index d8d6f40b1..71e0a1d9e 100644 --- a/instdata.py +++ b/instdata.py @@ -69,6 +69,7 @@ class InstallData: self.dbpath = None self.upgradeRoot = None self.upgradeSwapInfo = None + self.upgradeDeps = "" self.configFileData = self.tmpData def setInstallProgressClass(self, c): |