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