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

s/None/mpm_none/

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