0
0
mirror of https://github.com/saltstack-formulas/rsyncd-formula.git synced 2024-11-27 23:07:56 +01:00
rsyncd-formula/rsyncd/config.sls
2015-05-03 19:11:59 +02:00

22 lines
484 B
Plaintext

{% from "rsyncd/map.jinja" import rsyncd with context %}
include:
- rsyncd
rsyncd_config_file:
file.managed:
- name: {{ rsyncd.configfile }}
- contents_pillar: rsyncd:config
- watch_in:
- service: rsync
{% if salt['pillar.get']('rsyncd:secrets') %}
rsyncd_secrets_file:
file.managed:
- name: {{ rsyncd.secretsfile }}
- watch_in:
- service: rsync
- source: salt://rsyncd/files/secrets.jinja
- mode: 640
- template: jinja
{% endif %}