瀏覽代碼

Disabled automatic sorting of mapping keys in jinja templating

tags/v0.55.0
francesco.a 7 年之前
父節點
當前提交
630a522ba4
共有 3 個檔案被更改,包括 3 行新增3 行删除
  1. +1
    -1
      nginx/ng/config.sls
  2. +1
    -1
      nginx/ng/map.jinja
  3. +1
    -1
      nginx/ng/servers_config.sls

+ 1
- 1
nginx/ng/config.sls 查看文件

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

+ 1
- 1
nginx/ng/map.jinja 查看文件

@@ -1,6 +1,6 @@
{% macro sls_block(dict) %}
{% for key, value in dict.items() %}
- {{ key }}: {{ value|json() }}
- {{ key }}: {{ value|json(sort_keys=False) }}
{% endfor %}
{% endmacro %}


+ 1
- 1
nginx/ng/servers_config.sls 查看文件

@@ -93,7 +93,7 @@ nginx_server_available_dir:
- source: salt://nginx/ng/files/server.conf
- template: jinja
- context:
config: {{ settings.config|json() }}
config: {{ settings.config|json(sort_keys=False) }}
{% if 'overwrite' in settings and settings.overwrite == False %}
- unless:
- test -e {{ server_curpath(server) }}

Loading…
取消
儲存