From 7d284761777b229d958052ab092707665e89e7be Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 20 Feb 2019 15:44:52 -0600 Subject: [PATCH] Do not recreate Blazar DB if using preconfigured Most other services already gate the DB bootstrap operations with the 'use_preconfigured_databases' variable; Blazar did not. Change-Id: I772b1cb92612c7e6936f052ed9947f93582f264c --- ansible/roles/blazar/tasks/bootstrap.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/roles/blazar/tasks/bootstrap.yml b/ansible/roles/blazar/tasks/bootstrap.yml index 593ec8e481..5110a3e1df 100644 --- a/ansible/roles/blazar/tasks/bootstrap.yml +++ b/ansible/roles/blazar/tasks/bootstrap.yml @@ -11,6 +11,8 @@ name: "{{ blazar_database_name }}" run_once: True delegate_to: "{{ groups['blazar-api'][0] }}" + when: + - not use_preconfigured_databases | bool - name: Creating blazar database user and setting permissions become: true @@ -28,6 +30,8 @@ append_privs: "yes" run_once: True delegate_to: "{{ groups['blazar-api'][0] }}" + when: + - not use_preconfigured_databases | bool # TODO(egonzalez) Use os_nova_host_aggregate ansible module once ansible min version is 2.3 # http://docs.ansible.com/ansible/os_nova_host_aggregate_module.html