summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-05-07 20:55:24 +0000
committerJeremy Katz <katzj@redhat.com>2003-05-07 20:55:24 +0000
commita4ee8b832ce74972655cd0f55b2a5635595ea860 (patch)
tree1ced8e45219d736631c5d6db039c45db7be3a61e
parent8e0314dac8158ea440c352fdb298b1cc833b8fa6 (diff)
downloadanaconda-a4ee8b832ce74972655cd0f55b2a5635595ea860.tar.gz
anaconda-a4ee8b832ce74972655cd0f55b2a5635595ea860.tar.xz
anaconda-a4ee8b832ce74972655cd0f55b2a5635595ea860.zip
disable upgrades in taroon for the moment at least
-rw-r--r--installclass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py
index b1550d7ca..45fa026e7 100644
--- a/installclass.py
+++ b/installclass.py
@@ -161,7 +161,7 @@ class BaseInstallClass:
# 'noupgrade' can be used on the command line to force not looking
# for partitions to upgrade. useful in some cases...
cmdline = open("/proc/cmdline", "r").read()
- if cmdline.find("noupgrade") != -1:
+ if cmdline.find("upgrade") == -1:
dispatch.skipStep("findrootparts")
# called from anaconda so that we can skip steps in the headless case