apache-formula/apache/mod_wsgi.sls

32 lines
679 B
Plaintext
Raw Normal View History

{% from "apache/map.jinja" import apache with context %}
2013-08-14 00:51:38 +02:00
2013-08-27 04:45:57 +02:00
include:
- apache
2013-08-14 00:51:38 +02:00
mod_wsgi:
2014-09-25 18:48:36 +02:00
pkg.installed:
2013-08-27 04:45:38 +02:00
- name: {{ apache.mod_wsgi }}
2013-08-27 04:45:57 +02:00
- require:
- pkg: apache
- watch_in:
- module: apache-restart
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
2013-08-14 00:51:38 +02:00
{% if 'conf_mod_wsgi' in apache %}
{{ apache.conf_mod_wsgi }}:
2014-09-25 18:48:36 +02:00
file.uncomment:
2013-08-14 00:51:38 +02:00
- regex: LoadModule
- onlyif: test -f {{ apache.conf_mod_wsgi }}
2013-08-14 00:51:38 +02:00
- require:
- pkg: mod_wsgi
- watch_in:
- module: apache-restart
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
2017-04-06 14:11:32 +02:00
{% endif %}