f1b71d00ae
BREAKING CHANGES: users must adapt their pillar. See `docs.REAME.rst`
14 lines
306 B
Plaintext
14 lines
306 B
Plaintext
{% if grains['os_family'] in ["Debian", "FreeBSD"] %}
|
|
include:
|
|
- php.apache2.install
|
|
{% endif %} #END: os = Debian|FreeBSD
|
|
{% if grains['os_family'] == "Debian" %}
|
|
- php.apache2.ini
|
|
|
|
extend:
|
|
php_apache2_ini:
|
|
file:
|
|
- require:
|
|
- sls: php.apache2.install
|
|
{% endif %} #END: os = debian
|