summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorMartin Gracik <mgracik@redhat.com>2011-07-25 12:49:38 +0200
committerMartin Gracik <mgracik@redhat.com>2011-07-26 09:39:02 +0200
commit2e94beff09f8a903521c38d6e4c4200e0e1edcfc (patch)
tree5488b962161258277a24c8f78d0c6688ba227996 /pyanaconda/installclass.py
parent0c33e8f41adb412769e3fc335fe7db078711c3a0 (diff)
downloadanaconda-2e94beff09f8a903521c38d6e4c4200e0e1edcfc.tar.gz
anaconda-2e94beff09f8a903521c38d6e4c4200e0e1edcfc.tar.xz
anaconda-2e94beff09f8a903521c38d6e4c4200e0e1edcfc.zip
Change IsBeta to IsFinal
When doing composes pungi (and lorax) uses a flag --isfinal, to set a final release, otherwise it is considered a beta release by default. This patch makes the final vs beta more consistent with the composes.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 9ac927383..4c599d17d 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -123,7 +123,7 @@ class BaseInstallClass(object):
"complete"
)
- if not isBeta:
+ if isFinal:
dispatch.skip_steps("betanag")
if iutil.isEfi() or not iutil.isX86():