From 1c61f00e285c61165feba5d1b946c33fadd315e1 Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Mon, 19 Aug 2002 19:41:41 +0000 Subject: add ability to toggle beta nag, turning it OFF now --- constants.py | 2 ++ installclass.py | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 591bf340e..f0f9009c9 100644 --- a/constants.py +++ b/constants.py @@ -13,6 +13,8 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # +BETANAG = 0 + DEBUG = 0 DISPATCH_BACK = -1 diff --git a/installclass.py b/installclass.py index ead3dfd68..fac8d97a1 100644 --- a/installclass.py +++ b/installclass.py @@ -23,7 +23,8 @@ from partitioning import * from rhpl.log import log from rhpl.translate import _, N_ - + +from constants import BETANAG class BaseInstallClass: # default to not being hidden @@ -131,6 +132,9 @@ class BaseInstallClass: "complete" ) + if not BETANAG: + dispatch.skipStep("betanag") + # XXX ugh, this badly needs some clean up if iutil.getArch() == "alpha" or iutil.getArch() == "ia64": dispatch.skipStep("bootdisk") -- cgit