2015-02-26 16:19:08 +01:00
|
|
|
{% from "postfix/map.jinja" import postfix with context %}
|
|
|
|
|
2013-06-13 07:55:32 +02:00
|
|
|
postfix:
|
2015-02-26 16:19:08 +01:00
|
|
|
pkg.installed:
|
2015-08-22 12:46:35 +02:00
|
|
|
- name: {{ postfix.package }}
|
2015-02-26 16:19:08 +01:00
|
|
|
- watch_in:
|
|
|
|
- service: postfix
|
2013-06-13 07:55:32 +02:00
|
|
|
service.running:
|
|
|
|
- enable: True
|
|
|
|
- require:
|
|
|
|
- pkg: postfix
|
2014-04-23 21:02:09 +02:00
|
|
|
- watch:
|
|
|
|
- pkg: postfix
|
|
|
|
|
|
|
|
# manage /etc/aliases if data found in pillar
|
|
|
|
{% if 'aliases' in pillar.get('postfix', '') %}
|
2015-08-22 12:14:21 +02:00
|
|
|
{{ postfix.aliases_file }}:
|
2014-04-23 21:02:09 +02:00
|
|
|
file.managed:
|
|
|
|
- source: salt://postfix/aliases
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- mode: 644
|
|
|
|
- template: jinja
|
|
|
|
- require:
|
|
|
|
- pkg: postfix
|
|
|
|
|
|
|
|
run-newaliases:
|
|
|
|
cmd.wait:
|
|
|
|
- name: newaliases
|
|
|
|
- cwd: /
|
|
|
|
- watch:
|
2015-08-22 12:14:21 +02:00
|
|
|
- file: {{ postfix.aliases_file }}
|
2014-04-23 21:02:09 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
# manage /etc/postfix/virtual if data found in pillar
|
|
|
|
{% if 'virtual' in pillar.get('postfix', '') %}
|
|
|
|
/etc/postfix/virtual:
|
|
|
|
file.managed:
|
|
|
|
- source: salt://postfix/virtual
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- mode: 644
|
|
|
|
- template: jinja
|
|
|
|
- require:
|
|
|
|
- pkg: postfix
|
|
|
|
|
|
|
|
run-postmap:
|
|
|
|
cmd.wait:
|
|
|
|
- name: /usr/sbin/postmap /etc/postfix/virtual
|
|
|
|
- cwd: /
|
|
|
|
- watch:
|
|
|
|
- file: /etc/postfix/virtual
|
|
|
|
{% endif %}
|