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

test debug

parent 9479a818
No related branches found
No related tags found
No related merge requests found
Pipeline #9788 passed
......@@ -201,7 +201,7 @@
- name: Set a fact for the enabled MPM
set_fact:
apache_mpm_loaded: "mpm_none"
apache_mpm_loaded: ""
when: apache_mpm_check.stdout == "invalid"
- name: Debug the enabled MPM
......
......@@ -33,7 +33,7 @@
- name: Include MPM switching tasks
include_tasks: mpm.yml
when: ( apache_mpm_loaded not in apache_mods_enabled ) or ( apache_mpm_loaded == "mpm_none" )
when: ( apache_mpm_loaded not in apache_mods_enabled ) or ( apache_mpm_loaded == "" )
- name: Apache config available
include_tasks: config.yml
......
......@@ -37,7 +37,7 @@
when: apache_mpm_event_enabled.changed
when:
- ( apache_mpm_loaded == "mpm_prefork" ) or ( apache_mpm_loaded == "mpm_none" )
- ( apache_mpm_loaded == "mpm_prefork" ) or ( apache_mpm_loaded == "" )
- ( "mpm_event" in apache_mods_enabled )
tags:
- apache
......@@ -65,7 +65,7 @@
when: apache_mpm_prefork_enabled.changed
when:
- ( apache_mpm_loaded == "mpm_event" ) or ( apache_mpm_loaded == "mpm_none" )
- ( apache_mpm_loaded == "mpm_event" ) or ( apache_mpm_loaded == "" )
- ( "mpm_prefork" in apache_mods_enabled )
tags:
- apache
......
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