]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
ceph-osd: set 'openstack_keys_tmp' only when 'openstack_config' is defined.
authorKonstantin Shalygin <k0ste@k0ste.ru>
Fri, 8 Jun 2018 18:03:00 +0000 (01:03 +0700)
committerGuillaume Abrioux <gabrioux@redhat.com>
Mon, 11 Jun 2018 11:03:55 +0000 (13:03 +0200)
If 'openstack_config' is false this task shouldn't be executed.

Signed-off-by: Konstantin Shalygin <k0ste@k0ste.ru>
roles/ceph-osd/tasks/main.yml

index 9ac9863b60eedea3e256b25270e2fb21b9e7d7d0..60136faed2943976c5ef13dca4bfc8b757475e37 100644 (file)
@@ -86,6 +86,7 @@
     openstack_keys_tmp: "{{ openstack_keys_tmp|default([]) + [ { 'key': item.key, 'name': item.name, 'caps': { 'mon': item.mon_cap, 'osd': item.osd_cap|default(''), 'mds': item.mds_cap|default(''), 'mgr': item.mgr_cap|default('') } , 'mode': item.mode } ] }}"
   with_items: "{{ openstack_keys }}"
   when:
+    - openstack_config
     - item.get('mon_cap', None) # it's enough to assume we are running an old-fashionned syntax simply by checking the presence of mon_cap since every key needs this cap
 
 - name: set_fact keys - override keys_tmp with keys