Browse Source

This branch is foundational for further version-specific work to come.

* Add apache version (2.2, 2.4) detection based on osfinger (defaults to 2.4).
* Version can be overridden in pillar (for Apache 2.4 on RHEL 6 for example)
master
Brad Thurber 9 years ago
parent
commit
e5c1209433
3 changed files with 15 additions and 1 deletions
  1. +6
    -1
      apache/map.jinja
  2. +6
    -0
      apache/osfingermap.yaml
  3. +3
    -0
      pillar.example

+ 6
- 1
apache/map.jinja View File

@@ -1,3 +1,5 @@
{% import_yaml "apache/osfingermap.yaml" as osfingermap %}

{% set apache = salt['grains.filter_by']({
'Debian': {
'server': 'apache2',
@@ -88,4 +90,7 @@
'default_site_ssl': 'default-ssl.conf',
'use_require': True,
},
}, grain='oscodename', merge=salt['pillar.get']('apache:lookup'))) %}
}, grain='oscodename', merge=salt['grains.filter_by'](
osfingermap
, grain='osfinger', merge=salt['pillar.get']('apache:lookup')))) %}


+ 6
- 0
apache/osfingermap.yaml View File

@@ -0,0 +1,6 @@
default:
version: '2.4'
Red Hat Enterprise Linux Server-6:
version: '2.2'
Red Hat Enterprise Linux Server-7:
version: '2.4'

+ 3
- 0
pillar.example View File

@@ -11,6 +11,9 @@ apache:
confext: .conf
logdir: /var/log/apache2
wwwdir: /srv/apache2
# apache version (generally '2.2' or '2.4')
version: '2.2'

# ``apache.mod_wsgi`` formula additional configuration:
mod_wsgi: mod_wsgi

Loading…
Cancel
Save