소스 검색

Update file.sls

added possibility to delete files
pull/218/head
preussal 4 년 전
부모
커밋
758e3e2591
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      linux/system/file.sls

+ 6
- 2
linux/system/file.sls 파일 보기

@@ -4,7 +4,10 @@
{%- for file_name, file in system.file.items() %}

linux_file_{{ file_name }}:
{%- if file.serialize is defined %}
{%- if file.absent is defined and file.absent is sameas true %}
file.absent:

{%- elif file.serialize is defined %}
file.serialize:
- formatter: {{ file.serialize }}
{%- if file.contents is defined %}
@@ -12,6 +15,7 @@ linux_file_{{ file_name }}:
{%- elif file.contents_pillar is defined %}
- dataset_pillar: {{ file.contents_pillar }}
{%- endif %}

{%- else %}
file.managed:
{%- if file.source is defined %}
@@ -51,7 +55,7 @@ linux_file_{{ file_name }}:
{%- if file.encoding is defined %}
- encoding: {{ file.encoding }}
{%- endif %}
{%- endfor %}

{%- endif %}

Loading…
취소
저장