Merge pull request #73 from chrisdeeming/patch-1

Add support for PHP 8.1
This commit is contained in:
Jeff Geerling 2022-09-09 10:33:20 -05:00 committed by GitHub
commit 090b3d759a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@
- name: Enable remi repo for PHP 8.0.
set_fact: php_enablerepo="remi,remi-php80"
when: php_version == "8.0"
- name: Enable remi repo for PHP 8.1.
set_fact: php_enablerepo="remi,remi-php81"
when: php_version == "8.1"
# See: https://github.com/ansible/ansible/issues/64852
- block: