From 0ed3b6668b6073340591d9469a68809472cce128 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 1 Aug 2014 10:08:40 +0800 Subject: [PATCH] change the config render method --- cinder/files/cinder.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cinder/files/cinder.conf b/cinder/files/cinder.conf index bf43ff7..f128260 100644 --- a/cinder/files/cinder.conf +++ b/cinder/files/cinder.conf @@ -1,9 +1,9 @@ -{%- from "cinder/map.jinja" import cinder_config with context %} +{% from "cinder/map.jinja" import cinder_config with context -%} # This file is managed by salt -{%- for section, section_values in cinder_config | dictsort(true) %} +{% for section, section_values in cinder_config | dictsort(true) %} [{{ section }}] {%- for key, value in section_values| dictsort(true) %} -{{ key }}={{ value }} +{{ key }} = {{ value }} {%- endfor %} {% endfor %} {#- vim:ft=sls