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

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 %}