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.

16 lines
305B

  1. {% from "apache/package-map.jinja" import apache with context %}
  2. mod_wsgi:
  3. pkg:
  4. - installed
  5. - name: {{ apache.mod_wsgi }}
  6. {% if grains.get('os_family') == 'RedHat' %}
  7. /etc/httpd/conf.d/wsgi.conf:
  8. file:
  9. - uncomment
  10. - regex: LoadModule
  11. - require:
  12. - pkg: mod_wsgi
  13. {% endif %}