Просмотр исходного кода

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 1 месяц назад
Родитель
Сommit
14939e416d
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 10 добавлений и 0 удалений
  1. +10
    -0
      chrony/config/file.sls

+ 10
- 0
chrony/config/file.sls Просмотреть файл

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

Загрузка…
Отмена
Сохранить