apache-formula/php5.sls

34 lines
586 B
Plaintext
Raw Normal View History

2013-07-29 21:29:41 +00:00
include:
2013-07-29 21:30:14 +00:00
- apt
2013-07-29 21:29:41 +00:00
{% if grains['os']=="Ubuntu" %}
mod-php5:
pkg.installed:
- name: libapache2-mod-php5
- order: 180
- require:
2013-07-29 21:30:29 +00:00
- pkg: apache
2013-07-29 21:29:41 +00:00
a2enmod php5:
cmd.run:
- unless: ls /etc/apache2/mods-enabled/php5.load
- require:
- pkg: mod-php5
- watch_in:
2013-07-29 21:30:29 +00:00
- cmd: apache-restart
2013-07-29 21:29:41 +00:00
{% if 'apache-php-ini' in pillar %}
2013-07-29 21:29:41 +00:00
/etc/php5/apache2/php.ini:
file.managed:
- source: {{ pillar['apache-php-ini'] }}
2013-07-29 21:29:41 +00:00
- order: 225
- watch_in:
2013-07-29 21:30:29 +00:00
- cmd: apache-restart
2013-07-29 21:29:41 +00:00
- require:
2013-07-29 21:30:29 +00:00
- pkg: apache
2013-07-29 21:29:41 +00:00
- pkg: php5
{% endif %}
{% endif %}