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
No related tags found
No related merge requests found
Pipeline #9785 passed
......@@ -201,7 +201,7 @@
- name: Set a fact for the enabled MPM
set_fact:
apache_mpm_loaded: "none"
apache_mpm_loaded: "mpm_none"
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 == "none" )
when: ( apache_mpm_loaded not in apache_mods_enabled ) or ( apache_mpm_loaded == "mpm_none" )
- 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 == "none" )
- ( apache_mpm_loaded == "mpm_prefork" ) or ( apache_mpm_loaded == "mpm_none" )
- ( "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 == "none" )
- ( apache_mpm_loaded == "mpm_event" ) or ( apache_mpm_loaded == "mpm_none" )
- ( "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