roles/php-fpm: Update for PHP 7.3 in Debian 10

This commit is contained in:
2019-07-06 21:04:04 +03:00
parent 5fe583541a
commit 460c1df65b
5 changed files with 2424 additions and 0 deletions

View File

@ -1,6 +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.
- name: Configure php-fpm on Ubuntu 16.04 and Debian 9
include_tasks: Ubuntu.yml
@ -12,4 +13,9 @@
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==')
tags: php-fpm
- name: Configure php-fpm on Debian 10
include_tasks: Debian_10.yml
when: ansible_distribution == 'Debian' and ansible_distribution_version is version_compare('10', '==')
tags: php-fpm
# vim: set ts=2 sw=2: