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
|
|
|
{% if postfix.packages is defined %}
|
|
|
|
pkg.installed:
|
|
|
|
- names:
|
|
|
|
{% for name in postfix.packages %}
|
|
|
|
- {{ name }}
|
|
|
|
{% endfor %}
|
|
|
|
- watch_in:
|
|
|
|
- service: postfix
|
|
|
|
{% endif %}
|
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', '') %}
|
|
|
|
/etc/aliases:
|
|
|
|
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:
|
|
|
|
- file: /etc/aliases
|
|
|
|
{% 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 %}
|