rsyncd-formula/rsyncd/map.jinja

15 lines
415 B
Plaintext
Raw Permalink Normal View History

2015-05-02 00:06:42 +02:00
{% set rsyncd = salt['grains.filter_by']({
2015-05-01 23:22:41 +02:00
'Debian': {
2015-05-02 00:06:42 +02:00
'pkg': 'rsync',
'service': 'rsync',
'configfile': '/etc/rsyncd.conf',
'secretsfile': '/etc/rsyncd.secrets'
2015-05-01 23:22:41 +02:00
},
2015-05-15 00:22:16 +02:00
'Arch': {
'pkg': 'rsync',
'service': 'rsyncd',
'configfile': '/etc/rsyncd.conf',
'secretsfile': '/etc/rsyncd.secrets'
},
2015-05-02 00:06:42 +02:00
}, merge=salt['pillar.get']('rsyncd:lookup')) %}