From: pprokop Date: Fri, 1 Apr 2016 11:02:02 +0000 (+0200) Subject: Changed when statements due to review X-Git-Tag: v1.0.4~23^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=da9b772534c5744bc3aeace55c23c6b3cd5f30fe;p=ceph-ansible.git Changed when statements due to review --- diff --git a/roles/ceph-mon/tasks/docker/main.yml b/roles/ceph-mon/tasks/docker/main.yml index d34c359fd..ea69c32c3 100644 --- a/roles/ceph-mon/tasks/docker/main.yml +++ b/roles/ceph-mon/tasks/docker/main.yml @@ -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