Merge "Revert "Update if condition for product generation""
diff --git a/src/com/mirantis/mk/Python.groovy b/src/com/mirantis/mk/Python.groovy
index 11f9e2a..c3b2c97 100644
--- a/src/com/mirantis/mk/Python.groovy
+++ b/src/com/mirantis/mk/Python.groovy
@@ -302,9 +302,8 @@
productDir = "stacklight2"
templateDir = "${templateEnvDir}/cluster_product/${productDir}"
}
- // generate infra unless its explicitly disabled
- if ((product == "infra" && templateContext.default_context.get("infra_enabled", "True").toBoolean())
- || templateContext.default_context.get("${product}_enabled", "False").toBoolean()) {
+ if (product == "infra" || (templateContext.default_context["${product}_enabled"]
+ && templateContext.default_context["${product}_enabled"].toBoolean())) {
common.infoMsg("Generating product " + product + " from " + templateDir + " to " + templateOutputDir)