roles/php-fpm: Use Ubuntu 20.04 configs on Debian 11
They both use PHP 7.4.
This commit is contained in:
parent
6bc044d454
commit
d261f81642
@ -2,6 +2,7 @@
|
|||||||
# Ubuntu 18.04 uses php-fpm 7.2
|
# Ubuntu 18.04 uses php-fpm 7.2
|
||||||
# Debian 10 uses php-fpm 7.3
|
# Debian 10 uses php-fpm 7.3
|
||||||
# Ubuntu 20.04 uses PHP 7.4
|
# Ubuntu 20.04 uses PHP 7.4
|
||||||
|
# Debian 11 uses PHP 7.4
|
||||||
|
|
||||||
- name: Configure php-fpm on Ubuntu 18.04
|
- name: Configure php-fpm on Ubuntu 18.04
|
||||||
include_tasks: Ubuntu_18.04.yml
|
include_tasks: Ubuntu_18.04.yml
|
||||||
@ -18,4 +19,10 @@
|
|||||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '==')
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '==')
|
||||||
tags: php-fpm
|
tags: php-fpm
|
||||||
|
|
||||||
|
- name: Configure php-fpm on Debian 11
|
||||||
|
include_tasks: Ubuntu_20.04.yml
|
||||||
|
when: ansible_distribution == 'Debian' and ansible_distribution_version is version('11', '==')
|
||||||
|
tags: php-fpm
|
||||||
|
|
||||||
|
|
||||||
# vim: set ts=2 sw=2:
|
# vim: set ts=2 sw=2:
|
||||||
|
Loading…
Reference in New Issue
Block a user