Alan Orth
d155898bb1
Ansible 2.5.0 uses a new syntax for Jinja2 filters that are used as tests. See: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.5.html
11 lines
397 B
YAML
11 lines
397 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.
|
|
|
|
- name: Configure php-fpm on Ubuntu and Debian 9
|
|
import_tasks: Ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu' or (ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '=='))
|
|
tags: php-fpm
|
|
|
|
# vim: set ts=2 sw=2:
|