apache-formula/apache/mod_php5.sls

36 lines
711 B
Plaintext
Raw Normal View History

{% from "apache/map.jinja" import apache with context %}
2013-07-29 23:29:41 +02:00
include:
- apache
2013-07-29 23:29:41 +02:00
mod-php5:
pkg.installed:
- name: {{ apache.mod_php5 }}
2013-07-29 23:29:41 +02:00
- order: 180
- require:
2013-07-29 23:30:29 +02:00
- pkg: apache
2013-07-29 23:29:41 +02:00
{% if grains['os_family']=="Debian" %}
2013-07-29 23:29:41 +02:00
a2enmod php5:
cmd.run:
- unless: ls /etc/apache2/mods-enabled/php5.load
2013-07-29 23:32:16 +02:00
- order: 225
2013-07-29 23:29:41 +02:00
- require:
- pkg: mod-php5
- watch_in:
- module: apache-restart
2013-07-29 23:29:41 +02:00
2013-07-29 23:31:15 +02:00
{% if 'apache' in pillar and 'php-ini' in pillar['apache'] %}
2013-07-29 23:29:41 +02:00
/etc/php5/apache2/php.ini:
file.managed:
2013-07-29 23:31:15 +02:00
- source: {{ pillar['apache']['php-ini'] }}
2013-07-29 23:29:41 +02:00
- order: 225
- watch_in:
- module: apache-restart
2013-07-29 23:29:41 +02:00
- require:
2013-07-29 23:30:29 +02:00
- pkg: apache
- pkg: mod-php5
2013-07-29 23:29:41 +02:00
{% endif %}
{% endif %}