rsyncd/templates/rsyncd.conf.j2
2019-04-14 11:45:18 +02:00

14 lines
297 B
Django/Jinja

uid = root
gid = root
use chroot = no
max connections = 4
syslog facility = local5
pid file = /run/rsyncd.pid
hosts allow = {{ rsynchostalloawed }}
{% for item in rsynclocations %}
[{{ item.name }}]
path = {{ item.location }}
comment = {{ item.name }}
read only = {{ item.readonly }}
{% endfor %}