Alan Orth
632aa1cf14
I had created these earlier in this branch before rebasing it on top of the Ansible 2.5.0 readiness branch. See: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.5.html
16 lines
705 B
YAML
16 lines
705 B
YAML
---
|
|
# 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.
|
|
|
|
- name: Configure php-fpm on Ubuntu 16.04 and Debian 9
|
|
include_tasks: Ubuntu.yml
|
|
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', '=='))
|
|
tags: php-fpm
|
|
|
|
- name: Configure php-fpm on Ubuntu 18.04
|
|
include_tasks: Ubuntu_18.04.yml
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==')
|
|
tags: php-fpm
|
|
|
|
# vim: set ts=2 sw=2:
|