Saltstack Official Apache Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% from "apache/map.jinja" import apache with context %}
-
- include:
- - apache
-
- mod-php5:
- pkg.installed:
- - name: {{ apache.mod_php5 }}
- - order: 180
- - require:
- - pkg: apache
-
- {% if grains['os_family']=="Debian" %}
- a2enmod php5:
- cmd.run:
- - unless: ls /etc/apache2/mods-enabled/php5.load
- - order: 225
- - require:
- - pkg: mod-php5
- - watch_in:
- - module: apache-restart
-
- {% if 'apache' in pillar and 'php-ini' in pillar['apache'] %}
- /etc/php5/apache2/php.ini:
- file.managed:
- - source: {{ pillar['apache']['php-ini'] }}
- - order: 225
- - watch_in:
- - module: apache-restart
- - require:
- - pkg: apache
- - pkg: mod-php5
- {% endif %}
-
- {% elif grains['os_family']=="FreeBSD" %}
-
- {{ apache.modulesdir }}/050_mod_php5.conf:
- file.managed:
- - source: salt://apache/files/{{ salt['grains.get']('os_family') }}/mod_php5.conf.jinja
- - mode: 644
- - template: jinja
- - require:
- - pkg: apache
- - watch_in:
- - module: apache-restart
-
- {% endif %}
-
- {% if grains['os_family']=="Suse" or salt['grains.get']('os') == 'SUSE' %}
- /etc/sysconfig/apache2:
- file.replace:
- - unless: grep '^APACHE_MODULES=.*php5' /etc/sysconfig/apache2
- - pattern: '^APACHE_MODULES=(.*)"'
- - repl: 'APACHE_MODULES=\1 php5"'
- {% endif %}
|