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
|
|
|
|
# can capitalize on that and use the same tasks.
|
2014-08-16 23:35:57 +02:00
|
|
|
|
2017-10-03 14:02:38 +02:00
|
|
|
- name: Configure php-fpm on Ubuntu and Debian 9
|
|
|
|
import_tasks: Ubuntu.yml
|
2017-01-30 14:11:39 +01:00
|
|
|
when: ansible_distribution == 'Ubuntu' or (ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '=='))
|
2016-04-15 12:27:51 +02:00
|
|
|
tags: php-fpm
|
2014-08-16 23:35:57 +02:00
|
|
|
|
|
|
|
# vim: set ts=2 sw=2:
|