Do not create Keystone domain-specific config directory if useless

The task was duplicated below (and this other one is conditional).
Additionally fix related tasks names.

Change-Id: I76a6dd84e78277f87b04951eb4e75bbdfc1c38bf
Signed-off-by: Radosław Piliszek <radoslaw.piliszek@gmail.com>
This commit is contained in:
Radosław Piliszek 2019-06-14 18:03:07 +02:00
parent cb0cb441c2
commit 5729af8ab7

View File

@ -29,23 +29,11 @@
when:
- keystone_policy.results
- name: Check if Keystone Domain specific settings enabled
- name: Check if Keystone domain-specific config is supplied
local_action: stat path="{{ node_custom_config }}/keystone/domains"
run_once: True
register: keystone_domain_directory
- name: Creating Keystone Domain directory
vars:
keystone: "{{ keystone_services.keystone }}"
file:
dest: "{{ node_config_directory }}/keystone/domains/"
state: "directory"
mode: "0770"
become: true
when:
- inventory_hostname in groups[keystone.group]
- keystone.enabled | bool
- name: Copying over config.json files for services
template:
src: "{{ item.key }}.json.j2"
@ -85,7 +73,7 @@
- Restart keystone container
- Restart keystone-fernet container
- name: Creating Keystone Domain directory
- name: Create Keystone domain-specific config directory
vars:
keystone: "{{ keystone_services.keystone }}"
file: