]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Changed when statements due to review 666/head
authorpprokop <pprokop@gklab-126-023.igk.intel.com>
Fri, 1 Apr 2016 11:02:02 +0000 (13:02 +0200)
committerpprokop <pprokop@gklab-126-023.igk.intel.com>
Fri, 1 Apr 2016 11:02:02 +0000 (13:02 +0200)
roles/ceph-mon/tasks/docker/main.yml

index d34c359fd86a4e8169f167369b6f0d2368b8a93c..ea69c32c3fbd5b5de6ea716c6cb63724cf02bffb 100644 (file)
@@ -14,8 +14,9 @@
       is_atomic='{{ stat_ostree.stat.exists }}'
 
 - include: checks.yml
-  when: ceph_health.rc != 0 and
-        not mon_containerized_deployment_with_kv
+  when:
+    ceph_health.rc != 0 and
+    not mon_containerized_deployment_with_kv
 
 - include: pre_requisite.yml
 
@@ -24,8 +25,9 @@
 
 # let the first mon create configs and keyrings
 - include: create_configs.yml
-  when: inventory_hostname == groups.mons[0] and
-        not mon_containerized_default_ceph_conf_with_kv
+  when:
+    inventory_hostname == groups.mons[0] and
+    not mon_containerized_default_ceph_conf_with_kv
 
 - include: fetch_configs.yml
   when: not mon_containerized_deployment_with_kv