From 8bb08854bf4cba6e99c452950e9ad7f965dbdadb Mon Sep 17 00:00:00 2001 From: simonLeary42 <71396965+simonLeary42@users.noreply.github.com> Date: Mon, 31 Mar 2025 17:09:57 -0400 Subject: [PATCH] Update apache2_module.py --- 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 afedd0163a..fd2152f6ba 100644 --- a/plugins/modules/apache2_module.py +++ b/plugins/modules/apache2_module.py @@ -194,7 +194,7 @@ def create_apache_identifier(name): # re expressions to extract subparts of names re_workarounds = [ - ('php7', re.compile(r'^(php7)[\d\.]+')), + ('php', re.compile(r'^(php\d)\.')), ('php8', re.compile(r'^(php)[\d\.]+')), ]