Merge pull request #235 from rhertzog/master-config-fix
JSON encode values embedded in the salt-master's configuration file
This commit is contained in:
		
						commit
						6b96bda5cd
					
				| @ -5,11 +5,11 @@ | ||||
| {% set cfg_master = cfg_salt.get('master', {}) -%} | ||||
| {%- macro get_config(configname, default_value) -%} | ||||
| {%- if configname in cfg_master -%} | ||||
| {{ configname }}: {{ cfg_master[configname] }} | ||||
| {{ configname }}: {{ cfg_master[configname]|json }} | ||||
| {%- elif configname in cfg_salt and configname not in reserved_keys -%} | ||||
| {{ configname }}: {{ cfg_salt[configname] }} | ||||
| {{ configname }}: {{ cfg_salt[configname]|json }} | ||||
| {%- else -%} | ||||
| #{{ configname }}: {{ default_value }} | ||||
| #{{ configname }}: {{ default_value|json }} | ||||
| {%- endif -%} | ||||
| {%- endmacro -%} | ||||
| {%- from 'salt/formulas.jinja' import file_roots, formulas with context -%} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Forrest
						Forrest