Browse Source

Added package-map.jinja

tags/v0.37.4
Seth House 11 years ago
parent
commit
66683570e9
3 changed files with 21 additions and 8 deletions
  1. +3
    -6
      apache/init.sls
  2. +12
    -0
      apache/package-map.jinja
  3. +6
    -2
      pillar.example

+ 3
- 6
apache/init.sls View File

{% set pkg = salt['grains.filter_by']({
'Debian': {'name': 'apache2'},
'RedHat': {'name': 'httpd'},
}) %}
{% from "apache/package-map.jinja" import apache with context %}


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
- 0
apache/package-map.jinja View File

{% 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')) %}

+ 6
- 2
pillar.example View File

# 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}}:

Loading…
Cancel
Save