Saltstack Official Apache Formula
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

29 lines
579B

  1. {% from "apache/map.jinja" import apache with context %}
  2. include:
  3. - apache
  4. mod-fcgid:
  5. pkg.installed:
  6. - name: {{ apache.mod_fcgid }}
  7. - order: 180
  8. - require:
  9. - pkg: apache
  10. {% if grains['os_family']=="Debian" %}
  11. a2enmod fcgid for apache.mod_fcgid:
  12. cmd.run:
  13. - name: a2enmod fcgid
  14. - order: 225
  15. - unless: ls /etc/apache2/mods-enabled/fcgid.load
  16. - require:
  17. - pkg: mod-fcgid
  18. - watch_in:
  19. - module: apache-restart
  20. - require_in:
  21. - module: apache-restart
  22. - module: apache-reload
  23. - service: apache
  24. {% endif %}