Merge "Fix double conditional bug"

This commit is contained in:
Jenkins
2017-07-06 17:10:21 +00:00
committed by Gerrit Code Review

View File

@@ -53,20 +53,18 @@
- include: cinder_db_setup.yml
static: no
when:
- "groups['cinder_api'] | length > 0"
- "'cinder_api' in group_names"
- "inventory_hostname == ansible_play_hosts[0]"
when:
- groups['cinder_api'] | length > 0
tags:
- cinder-config
- include: cinder_service_setup.yml
static: no
when:
- "groups['cinder_api'] | length > 0"
- "'cinder_api' in group_names"
- "inventory_hostname == ansible_play_hosts[0]"
when:
- groups['cinder_api'] | length > 0
tags:
- cinder-config
@@ -80,10 +78,9 @@
- include: cinder_backends.yml
static: no
when:
- "groups['cinder_volume'] | length > 0"
- "'cinder_volume' in group_names"
- "inventory_hostname == ansible_play_hosts[0]"
when:
- groups['cinder_volume'] | length > 0
tags:
- cinder-config