- skip the yum bootstrap if told to by InstallBootstrapRPM
authorMark Huang <mlhuang@cs.princeton.edu>
Thu, 22 Sep 2005 22:25:35 +0000 (22:25 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Thu, 22 Sep 2005 22:25:35 +0000 (22:25 +0000)
source/steps/InstallBase.py

index e8e0057..2be47d8 100644 (file)
@@ -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: