summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-06-09 22:26:10 +0000
committerJeremy Katz <katzj@redhat.com>2004-06-09 22:26:10 +0000
commit67cd6d50762d28f7ddf1fc7a1117694d39167202 (patch)
treefac915e638a27463dab0d82feeb2fa09a7b0d4b8 /upgrade.py
parent2ff186f50335100e3fd2fdb8168309728eead908 (diff)
downloadanaconda-67cd6d50762d28f7ddf1fc7a1117694d39167202.tar.gz
anaconda-67cd6d50762d28f7ddf1fc7a1117694d39167202.tar.xz
anaconda-67cd6d50762d28f7ddf1fc7a1117694d39167202.zip
disable upgrade warning on < 6.2 hopefully people aren't using <= Red Hat
Linux 6.2 anymore which means this only will get triggered on RHEL upgrades (which have similar numbering. oops, should have bumped the epoch probably)
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py
index e71fc3891..f3824d0cc 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -539,7 +539,7 @@ def upgradeFindPackages(intf, method, id, instPath, dir):
else:
supportedUpgradeVersion = 1
- if supportedUpgradeVersion == 0:
+ if 0 and supportedUpgradeVersion == 0:
rc = intf.messageWindow(_("Warning"),
_("Upgrades for this version of %s "
"are only supported from Red Hat Linux "