2014-08-16 23:35:57 +02:00
---
2017-01-30 14:11:39 +01:00
# Note: Debian 9's php-fpm config is identical to Ubuntu 16.04's, so for now we
2018-03-18 21:39:02 +01:00
# can capitalize on that and use the same tasks. Ubuntu 18.04 uses php-fpm 7.2.
2014-08-16 23:35:57 +02:00
2018-03-18 21:28:58 +01:00
- name : Configure php-fpm on Ubuntu 16.04 and Debian 9
2018-03-18 21:29:52 +01:00
include_tasks : Ubuntu.yml
2018-03-18 21:28:58 +01:00
when : (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==')) or (ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '=='))
2016-04-15 12:27:51 +02:00
tags : php-fpm
2014-08-16 23:35:57 +02:00
2018-03-18 21:26:46 +01:00
- name : Configure php-fpm on Ubuntu 18.04
2018-03-18 21:29:52 +01:00
include_tasks : Ubuntu_18.04.yml
2018-03-21 20:29:54 +01:00
when : ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==')
2018-03-18 21:26:46 +01:00
tags : php-fpm
2014-08-16 23:35:57 +02:00
# vim: set ts=2 sw=2: