浏览代码

Merge pull request #141 from bbinet/file-contents_pillar

Add contents_pillar support for files managed by pillar
pull/142/head
Filip Pytloun 6 年前
父节点
当前提交
5f7144a35e
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      linux/system/file.sls

+ 4
- 1
linux/system/file.sls 查看文件

@@ -11,6 +11,9 @@
{%- if file.contents is defined %}
- contents: {{ file.contents }}
{%- endif %}
{%- if file.contents_pillar is defined %}
- contents_pillar: {{ file.contents_pillar }}
{%- endif %}
- makedirs: {{ file.get('makedirs', 'True') }}
- user: {{ file.get('user', 'root') }}
- group: {{ file.get('group', 'root') }}
@@ -31,4 +34,4 @@

{%- endfor %}

{%- endif %}
{%- endif %}

正在加载...
取消
保存