formula-postfix/postfix/map.jinja

23 lines
620 B
Plaintext
Raw Normal View History

2015-02-26 10:19:08 -05:00
{% set postfix = salt['grains.filter_by']({
'Debian': {
'packages': ['postfix', 'postfix-policyd-spf-python'],
'postgrey_pkg': 'postgrey',
2015-02-26 10:19:08 -05:00
'service': 'postfix',
},
'Gentoo': {
'packages': ['mail-mta/postfix'],
'postgrey_pkg': 'postgrey',
2015-02-26 10:19:08 -05:00
'service': 'postfix',
},
2015-03-13 08:26:27 -04:00
'RedHat': {
'packages': ['postfix'],
'postgrey_pkg': 'postgrey',
2015-03-13 08:26:27 -04:00
'service': 'postfix',
},
'Arch' : {
'packages': ['postfix'],
'postgrey_pkg': 'postgrey',
'service': 'postfix',
},
2015-02-26 10:19:08 -05:00
}, merge=salt['pillar.get']('postfix:lookup')) %}