Fix typo in oss condition
Change-Id: I05168cb05c72606d19c01120a256705132c95a36
Closes-Bug: PROD-16540
diff --git a/src/com/mirantis/mk/Orchestrate.groovy b/src/com/mirantis/mk/Orchestrate.groovy
index 5809e75..6eb564c 100644
--- a/src/com/mirantis/mk/Orchestrate.groovy
+++ b/src/com/mirantis/mk/Orchestrate.groovy
@@ -811,7 +811,7 @@
def common = new com.mirantis.mk.Common()
def salt = new com.mirantis.mk.Salt()
- if (!common.checkContains('STACK_INSTALL', 'k8s')) or (!common.checkContains('STACK_INSTALL', 'openstack')) {
+ if (!common.checkContains('STACK_INSTALL', 'k8s') || !common.checkContains('STACK_INSTALL', 'openstack')) {
def orchestrate = new com.mirantis.mk.Orchestrate()
orchestrate.installInfra(master)
}