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)
This commit is contained in:
Brad Thurber 2015-08-25 15:38:16 -04:00
parent 75304c160c
commit e5c1209433
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,5 @@
{% import_yaml "apache/osfingermap.yaml" as osfingermap %}
{% set apache = salt['grains.filter_by']({ {% set apache = salt['grains.filter_by']({
'Debian': { 'Debian': {
'server': 'apache2', 'server': 'apache2',
@ -88,4 +90,7 @@
'default_site_ssl': 'default-ssl.conf', 'default_site_ssl': 'default-ssl.conf',
'use_require': True, '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
apache/osfingermap.yaml Normal file
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'

View File

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