瀏覽代碼

Merge pull request #13 from bbinet/template-context

Add support for template defaults/context args
pull/221/head
preussal 1 年之前
父節點
當前提交
fa72739075
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      linux/system/file.sls

+ 6
- 0
linux/system/file.sls 查看文件

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

Loading…
取消
儲存