소스 검색

Merge pull request #13 from bbinet/template-context

Add support for template defaults/context args
pull/221/head
preussal 1 년 전
부모
커밋
fa72739075
No account linked to committer's email address
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…
취소
저장