paulbsd-salt/states/rsync/config.sls

14 lines
278 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
rsync-config:
file.managed:
- name: /etc/rsyncd.conf
2023-03-11 10:08:26 +01:00
- source: salt://rsync/templates/rsyncd.conf.j2
2020-07-10 00:58:55 +02:00
- user: root
- group: root
2021-12-12 10:45:30 +01:00
- mode: 0640
2020-07-10 00:58:55 +02:00
- template: jinja
- watch_in:
- service: rsync-service
- require:
2023-03-11 10:08:26 +01:00
- pkg: rsync-install