Saltstack Official Apache Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
12345678910111213141516171819202122232425262728
  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 %}