From c3106130a57ef2f2053d7cfac06fc380c484e5a6 Mon Sep 17 00:00:00 2001 From: Guillaume Thouvenin Date: Thu, 29 Sep 2016 14:49:37 +0200 Subject: [PATCH] Fix issue with task install_ocf_script on MOS8 This patch fixes an issue with the compatibility between the task 'install_ocf_script' and MOS8. On MOS 8 the following error is raised: "Tasks 'primary-standalone-database, primary-standalone-rabbitmq, standalone-database, standalone-rabbitmq' can't be in requires|required_for|groups|tasks for [install-ocf-script] because they don't exist in the graph" Change-Id: I97e5fd6321c9f7a5878e1b8db9f37cec15745676 Closes-Bug: #1627968 (cherry picked from commit 76987240a97fcb03b391a36c1dd6c71020b2fbf5) --- deployment_tasks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_tasks.yaml b/deployment_tasks.yaml index cc3e95a7e..eb76ba0ba 100644 --- a/deployment_tasks.yaml +++ b/deployment_tasks.yaml @@ -5,7 +5,7 @@ - id: install-ocf-script type: puppet version: 2.0.0 - groups: [primary-controller, controller, primary-standalone-database, standalone-database, primary-standalone-rabbitmq, standalone-rabbitmq] + groups: ["/(primary-)?(controller|standalone-database|standalone-rabbitmq)/"] requires: [fuel_pkgs] # Required for the cluster tasks when the environment is scaled up required_for: [primary-cluster, cluster]