mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Merge 4be644dae0
into 70b5e362f9
This commit is contained in:
commit
bb9c6cb5f4
2 changed files with 3 additions and 0 deletions
2
changelogs/fragments/9951-mod-php-identifier.yml
Normal file
2
changelogs/fragments/9951-mod-php-identifier.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- apache2_module - added workaround for new php module name (php7_module -> php_module)
|
|
@ -194,6 +194,7 @@ def create_apache_identifier(name):
|
||||||
|
|
||||||
# re expressions to extract subparts of names
|
# re expressions to extract subparts of names
|
||||||
re_workarounds = [
|
re_workarounds = [
|
||||||
|
('php8', re.compile(r'^(php)[\d\.]+')),
|
||||||
('php', re.compile(r'^(php\d)\.')),
|
('php', re.compile(r'^(php\d)\.')),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue