formula-postfix/postfix/map.jinja

31 lines
949 B
Plaintext
Raw Normal View History

2015-02-26 10:19:08 -05:00
{% set postfix = salt['grains.filter_by']({
'Debian': {
'package': 'postfix',
2015-08-22 07:59:29 -04:00
'policyd_spf_pkg': 'postfix-policyd-spf-python',
'postgrey_pkg': 'postgrey',
2015-02-26 10:19:08 -05:00
'service': 'postfix',
'aliases': '/etc/aliases',
2015-02-26 10:19:08 -05:00
},
'Gentoo': {
'package': 'mail-mta/postfix',
2015-08-22 07:59:29 -04:00
'policyd_spf_pkg': 'mail-filter/pypolicyd-spf',
2015-08-22 06:40:09 -04:00
'postgrey_pkg': 'mail-filter/postgrey',
2015-02-26 10:19:08 -05:00
'service': 'postfix',
'aliases': '/etc/mail/aliases',
2015-02-26 10:19:08 -05:00
},
2015-03-13 08:26:27 -04:00
'RedHat': {
'package': 'postfix',
2015-08-22 07:59:29 -04:00
'policyd_spf_pkg': 'pypolicyd-spf',
'postgrey_pkg': 'postgrey',
2015-03-13 08:26:27 -04:00
'service': 'postfix',
'aliases': '/etc/aliases',
2015-03-13 08:26:27 -04:00
},
'Arch' : {
'package': 'postfix',
2015-08-22 07:59:29 -04:00
'policyd_spf_pkg': 'python-postfix-policyd-spf',
'postgrey_pkg': 'postgrey',
'service': 'postfix',
'aliases': '/etc/aliases',
},
2015-02-26 10:19:08 -05:00
}, merge=salt['pillar.get']('postfix:lookup')) %}