Procházet zdrojové kódy

Merge pull request #13 from bbinet/template-context

Add support for template defaults/context args
pull/221/head
preussal před 1 rokem
rodič
revize
fa72739075
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. +6
    -0
      linux/system/file.sls

+ 6
- 0
linux/system/file.sls Zobrazit soubor

@@ -27,6 +27,12 @@ linux_file_{{ file_name }}:
{%- endif %}
{%- if file.template is defined %}
- template: {{ file.template }}
{%- if file.defaults is defined %}
- defaults: {{ file.defaults|json }}
{%- endif %}
{%- if file.context is defined %}
- context: {{ file.context|json }}
{%- endif %}
{%- endif %}
{%- elif file.contents is defined %}
- contents: {{ file.contents|json }}

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