From d1e0842ca7444cb39e3c94264ca6714eefd5c507 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Thu, 22 Sep 2005 22:25:35 +0000 Subject: [PATCH] - skip the yum bootstrap if told to by InstallBootstrapRPM --- source/steps/InstallBase.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/steps/InstallBase.py b/source/steps/InstallBase.py index e8e0057..2be47d8 100644 --- a/source/steps/InstallBase.py +++ b/source/steps/InstallBase.py @@ -82,6 +82,11 @@ def Run( vars, log ): if CACERT_PATH == "": raise ValueError, "CACERT_PATH" + SKIP_INSTALL_BASE= vars["SKIP_INSTALL_BASE"] + if SKIP_INSTALL_BASE: + log.write( "Skipping base group install\n" ) + return 1 + except KeyError, var: raise BootManagerException, "Missing variable in vars: %s\n" % var except ValueError, var: -- 2.43.0