From: Mark Huang Date: Thu, 22 Sep 2005 22:25:35 +0000 (+0000) Subject: - skip the yum bootstrap if told to by InstallBootstrapRPM X-Git-Tag: bootmanager-3_1_9~7 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=d1e0842ca7444cb39e3c94264ca6714eefd5c507 - skip the yum bootstrap if told to by InstallBootstrapRPM --- 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: