mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-14 22:50:31 -07:00
[PR #9951/02ffb6e7 backport][stable-10] update PHP apache module workaround (#9979)
Some checks failed
EOL CI / EOL Sanity (Ⓐ2.15) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Has been cancelled
import-galaxy / Test to import built collection artifact with Galaxy importer (push) Has been cancelled
Verify REUSE / check (push) Has been cancelled
Some checks failed
EOL CI / EOL Sanity (Ⓐ2.15) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Has been cancelled
import-galaxy / Test to import built collection artifact with Galaxy importer (push) Has been cancelled
Verify REUSE / check (push) Has been cancelled
update PHP apache module workaround (#9951)
* update php apache module workaround
* Update apache2_module.py
* Update apache2_module.py
* Update apache2_module.py
* add changelog fragment
* Update changelogs/fragments/9951-mod-php-identifier.yml
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
* Update 9951-mod-php-identifier.yml
---------
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
(cherry picked from commit 02ffb6e7e3
)
Co-authored-by: simonLeary42 <71396965+simonLeary42@users.noreply.github.com>
This commit is contained in:
parent
6e16c6c649
commit
fb45b908dd
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, from ``php7_module`` to ``php_module`` (https://github.com/ansible-collections/community.general/pull/9951).
|
|
@ -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)\.')),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue