소스 검색

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…
취소
저장