From 861dd2c3f112f34cfbfb84d27349d16b1b5b372b Mon Sep 17 00:00:00 2001 From: ksingh7 Date: Tue, 29 Mar 2016 01:34:08 +0300 Subject: [PATCH] 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 --- roles/ceph-common/templates/ceph.conf.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }}