Merge pull request #13 from sys4/master

added map.jinja support
This commit is contained in:
Nitin Madhok 2015-02-26 09:34:07 -06:00
commit 93423d4ace
2 changed files with 21 additions and 4 deletions

View File

@ -1,5 +1,15 @@
{% from "postfix/map.jinja" import postfix with context %}
postfix:
pkg.installed: []
{% if postfix.packages is defined %}
pkg.installed:
- names:
{% for name in postfix.packages %}
- {{ name }}
{% endfor %}
- watch_in:
- service: postfix
{% endif %}
service.running:
- enable: True
- require:
@ -7,9 +17,6 @@ postfix:
- watch:
- pkg: postfix
postfix-policyd-spf-python:
pkg.installed: []
# manage /etc/aliases if data found in pillar
{% if 'aliases' in pillar.get('postfix', '') %}
/etc/aliases:

10
postfix/map.jinja Normal file
View File

@ -0,0 +1,10 @@
{% set postfix = salt['grains.filter_by']({
'Debian': {
'packages': ['postfix', 'postfix-policyd-spf-python'],
'service': 'postfix',
},
'Gentoo': {
'packages': ['mail-mta/postfix'],
'service': 'postfix',
},
}, merge=salt['pillar.get']('postfix:lookup')) %}