roles/php-fpm: Update for PHP 7.3 in Debian 10
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user