Browse Source

Merge pull request #73 from Wenzel/fix_mod_mpm

fix apache-restart ID in apache/mod_mpm according to apache/init.sls
tags/v0.37.4
puneet kandhari 9 years ago
parent
commit
3dafac2627
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      apache/mod_mpm.sls

+ 3
- 3
apache/mod_mpm.sls View File

- require: - require:
- pkg: apache - pkg: apache
- watch_in: - watch_in:
- module: apache_restart
- module: apache-restart
file.managed: file.managed:
- name: /etc/apache2/mods-available/{{ mpm_module }}.conf - name: /etc/apache2/mods-available/{{ mpm_module }}.conf
- template: jinja - template: jinja
- require: - require:
- pkg: apache - pkg: apache
- watch_in: - watch_in:
- module: apache_restart
- module: apache-restart


# Deactivate the other mpm modules as a previous step # Deactivate the other mpm modules as a previous step
{% for mod in ['mpm_prefork', 'mpm_worker', 'mpm_event'] if not mod == mpm_module %} {% for mod in ['mpm_prefork', 'mpm_worker', 'mpm_event'] if not mod == mpm_module %}
- require_in: - require_in:
- cmd: a2enmod {{ mpm_module }} - cmd: a2enmod {{ mpm_module }}
- watch_in: - watch_in:
- module: apache_restart
- module: apache-restart
{% endfor %} {% endfor %}


{% endif %} {% endif %}

Loading…
Cancel
Save