From c1a6ca0d215812e92e7113a96ca5ac74ee1cd08a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Tue, 4 Aug 2020 14:32:37 +0200 Subject: [PATCH] Fix actions for Aodh and Swift These two roles were missing 'stop' and 'deploy-containers', respectively. Change-Id: Iaf434be9baf1973323bb177fad799aea39210fba --- ansible/roles/aodh/tasks/stop.yml | 6 ++++++ ansible/roles/swift/tasks/deploy-containers.yml | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 ansible/roles/aodh/tasks/stop.yml create mode 100644 ansible/roles/swift/tasks/deploy-containers.yml diff --git a/ansible/roles/aodh/tasks/stop.yml b/ansible/roles/aodh/tasks/stop.yml new file mode 100644 index 0000000000..eca45ee0fe --- /dev/null +++ b/ansible/roles/aodh/tasks/stop.yml @@ -0,0 +1,6 @@ +--- +- import_role: + name: service-stop + vars: + project_services: "{{ aodh_services }}" + service_name: "{{ project_name }}" diff --git a/ansible/roles/swift/tasks/deploy-containers.yml b/ansible/roles/swift/tasks/deploy-containers.yml new file mode 100644 index 0000000000..1ccb8b1e65 --- /dev/null +++ b/ansible/roles/swift/tasks/deploy-containers.yml @@ -0,0 +1,2 @@ +--- +- import_tasks: start.yml