diff --git a/changelogs/fragments/9951-mod-php-identifier.yml b/changelogs/fragments/9951-mod-php-identifier.yml new file mode 100644 index 0000000000..b75f507193 --- /dev/null +++ b/changelogs/fragments/9951-mod-php-identifier.yml @@ -0,0 +1,2 @@ +minor_changes: + - apache2_module - added workaround for new php module name (php7_module -> php_module) diff --git a/plugins/modules/apache2_module.py b/plugins/modules/apache2_module.py index cacb870ee0..2007b5d1f1 100644 --- a/plugins/modules/apache2_module.py +++ b/plugins/modules/apache2_module.py @@ -194,6 +194,7 @@ def create_apache_identifier(name): # re expressions to extract subparts of names re_workarounds = [ + ('php8', re.compile(r'^(php)[\d\.]+')), ('php', re.compile(r'^(php\d)\.')), ]