apache-formula/apache/mod_php5.sls

68 lines
1.6 KiB
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
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
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
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
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 %}
2016-09-27 02:16:21 +02:00
{% 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
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
2016-09-27 02:16:21 +02:00
2013-07-29 23:29:41 +02:00
{% endif %}
2017-08-24 12:41:05 +02:00
{% 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 %}