Переглянути джерело

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

Завантаження…
Відмінити
Зберегти