From cfc55b17637843fff918bcc6c613a3b7a2498603 Mon Sep 17 00:00:00 2001 From: Daniel Hoffend Date: Thu, 17 Jul 2025 08:53:10 +0200 Subject: [PATCH] apache2_module: updated cgi action conditions Only the activation of the cgi module in threaded mode should be a restriction due to apache2 limitations, not the deactivation. Especially when the cgi module isn't enabled yet at all. Fixes #9140 * bug(fix): apache2_module fails to disable cgi module --- plugins/modules/apache2_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/apache2_module.py b/plugins/modules/apache2_module.py index 2007b5d1f1..22acf404fb 100644 --- a/plugins/modules/apache2_module.py +++ b/plugins/modules/apache2_module.py @@ -282,7 +282,7 @@ def main(): module.warnings = [] name = module.params['name'] - if name == 'cgi' and _run_threaded(module): + if name == 'cgi' and module.params['state'] == 'present' and _run_threaded(module): module.fail_json(msg="Your MPM seems to be threaded. No automatic actions on module cgi possible.") if not module.params['identifier']: