Skip to content
Snippets Groups Projects
Commit c8393380 authored by Chris Croome's avatar Chris Croome
Browse files

test

parent 6bb1482d
No related branches found
No related tags found
1 merge request!2MPM switching and TLS 1.3
Pipeline #9767 failed
......@@ -21,6 +21,7 @@
name: mpm_event
state: present
ignore_configcheck: true
register: apache_mpm_event_enabled
when:
- ( apache_mpm_loaded == "mpm_prefork" ) or ( apache_mpm_loaded == "none" )
......@@ -42,6 +43,7 @@
name: mpm_prefork
state: present
ignore_configcheck: true
register: apache_mpm_prefork_enabled
when:
- ( apache_mpm_loaded == "mpm_event" ) or ( apache_mpm_loaded == "none" )
......@@ -76,6 +78,14 @@
tags:
- apache
- name: Restart Apache if the MPM has changed
service:
name: apache2
state: restarted
when: apache_mpm_mpm_enabled.changed or apache_mpm_prefork_enabled.changed
tags:
- apache
- name: Re-check modules enabled
block:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment