Merge pull request #20 from spsoit/master

Context parameter safety fixes
This commit is contained in:
Seth House 2014-05-21 17:35:00 -06:00
commit 418a8b942b
2 changed files with 2 additions and 2 deletions

View File

@ -11,4 +11,4 @@ nginx_config:
- source: salt://nginx/ng/files/nginx.conf
- template: jinja
- context:
config: {{ nginx.server.config }}
config: {{ nginx.server.config|json() }}

View File

@ -93,7 +93,7 @@ nginx_vhost_available_dir:
- source: salt://nginx/ng/files/vhost.conf
- template: jinja
- context:
config: {{ settings.config }}
config: {{ settings.config|json() }}
{% do vhost_states.append(conf_state_id) %}
{% endif %}