From: ksingh7 Date: Mon, 28 Mar 2016 22:34:08 +0000 (+0300) Subject: ceph-common: Newline separation for mon_containerized_deployment_with_kv variable... X-Git-Tag: v1.0.3~5^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=861dd2c3f112f34cfbfb84d27349d16b1b5b372b;p=ceph-ansible.git ceph-common: Newline separation for mon_containerized_deployment_with_kv variable in ceph.conf.j2 ceph.conf.j2 template requires a new line between mon_containerized_deployment_with_kv and fsid variables With this commit , i have added a new line for better readablity --- diff --git a/roles/ceph-common/templates/ceph.conf.j2 b/roles/ceph-common/templates/ceph.conf.j2 index 81e46edc3..3ea096cd0 100644 --- a/roles/ceph-common/templates/ceph.conf.j2 +++ b/roles/ceph-common/templates/ceph.conf.j2 @@ -15,7 +15,9 @@ auth service required = none auth client required = none auth supported = none {% endif %} -{% if not mon_containerized_deployment_with_kv %}fsid = {{ fsid }}{% endif %} +{% if not mon_containerized_deployment_with_kv %} +fsid = {{ fsid }} +{% endif %} max open files = {{ max_open_files }} osd pool default pg num = {{ pool_default_pg_num }} osd pool default pgp num = {{ pool_default_pgp_num }}