Procházet zdrojové kódy

Disabled automatic sorting of mapping keys in jinja templating

tags/v0.55.0
francesco.a před 7 roky
rodič
revize
630a522ba4
3 změnil soubory, kde provedl 3 přidání a 3 odebrání
  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 Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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) }}

Načítá se…
Zrušit
Uložit