Saltstack Official PHP 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.

14 lines
306B

  1. {% if grains['os_family'] in ["Debian", "FreeBSD"] %}
  2. include:
  3. - php.apache2.install
  4. {% endif %} #END: os = Debian|FreeBSD
  5. {% if grains['os_family'] == "Debian" %}
  6. - php.apache2.ini
  7. extend:
  8. php_apache2_ini:
  9. file:
  10. - require:
  11. - sls: php.apache2.install
  12. {% endif %} #END: os = debian