Added package-map.jinja

This commit is contained in:
Seth House 2013-08-22 21:14:28 -06:00
parent 5550f85bd9
commit 66683570e9
3 changed files with 22 additions and 9 deletions

View File

@ -1,13 +1,10 @@
{% set pkg = salt['grains.filter_by']({ {% from "apache/package-map.jinja" import apache with context %}
'Debian': {'name': 'apache2'},
'RedHat': {'name': 'httpd'},
}) %}
apache: apache:
pkg: pkg:
- installed - installed
- name: {{ pkg.name }} - name: {{ apache.server }}
service: service:
- running - running
- name: {{ pkg.name }} - name: {{ apache.service }}
- enable: True - enable: True

12
apache/package-map.jinja Normal file
View File

@ -0,0 +1,12 @@
{% set apache = salt['grains.filter_by']({
'Debian': {
'server': 'apache2',
'service': 'apache2',
'conf': '/etc/apache2/conf.d',
},
'RedHat': {
'server': 'httpd',
'service': 'httpd',
'conf': '/etc/httpd/conf.d',
},
}, merge=salt['pillar.get']('apache:lookup')) %}

View File

@ -1,7 +1,11 @@
# Example for the apache.debian_full formula: # ``apache`` formula configuration:
apache:
server: apache2
service: apache2
conf: /etc/apache2/conf.d
# ``apache.debian_full`` formula additional configuration:
apache: apache:
php-ini: 'salt://path/to/file/php.ini'
register-site: register-site:
# any name as an array index, and you can duplicate this section # any name as an array index, and you can duplicate this section
{{UNQIUE}}: {{UNQIUE}}: