Ver código fonte

fix(suse): preserve pool.conf

The file is managed by RPM - if purging is enabled, idempotency would
break after package updates place the Salt removed file back. Hence
exclude this file by managing it if it exists. In the default formula
configuration it is not included anyways.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
pull/40/head
Georg Pfuetzenreuter 4 meses atrás
pai
commit
14939e416d
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 10 adições e 0 exclusões
  1. +10
    -0
      chrony/config/file.sls

+ 10
- 0
chrony/config/file.sls Ver arquivo

@@ -17,6 +17,8 @@ chrony-config-conf.d:
- clean: True
- require:
- sls: {{ sls_package_install }}
- file: chrony-config-file-file-managed
- file: chrony-config-file-pool-file-managed
{%- endif %}

chrony-config-file-file-managed:
@@ -34,3 +36,11 @@ chrony-config-file-file-managed:
chrony: {{ chrony|json }}
- require:
- sls: {{ sls_package_install }}

chrony-config-file-pool-file-managed:
file.managed:
- name: {{ chrony.confd }}/pool.conf
- create: False
- replace: False
- require:
- sls: {{ sls_package_install }}

Carregando…
Cancelar
Salvar