Add PHP 7.4 FPM support
This commit is contained in:
@ -11,4 +11,8 @@
|
||||
- name: reload php7.3-fpm
|
||||
systemd: name=php7.3-fpm state=reloaded
|
||||
|
||||
# For Ubuntu 20.04
|
||||
- name: reload php7.4-fpm
|
||||
systemd: name=php7.4-fpm state=reloaded
|
||||
|
||||
# vim: set ts=2 sw=2:
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
# Note: Debian 9's php-fpm config is identical to Ubuntu 16.04's, so for now we
|
||||
# can capitalize on that and use the same tasks. 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.
|
||||
|
||||
- name: Configure php-fpm on Ubuntu 16.04 and Debian 9
|
||||
include_tasks: Ubuntu.yml
|
||||
@ -18,4 +18,9 @@
|
||||
when: ansible_distribution == 'Debian' and ansible_distribution_version is version('10', '==')
|
||||
tags: php-fpm
|
||||
|
||||
- name: Configure php-fpm on Ubuntu 20.04
|
||||
include_tasks: Ubuntu_20.04.yml
|
||||
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '==')
|
||||
tags: php-fpm
|
||||
|
||||
# vim: set ts=2 sw=2:
|
||||
|
Reference in New Issue
Block a user