Alan Orth
16a9ebf97f
Ansible 2.4 changes the way includes work. Now you have to use "import" for playbooks and tasks that are static, and "include" for those that are dynamic (ie, those that use variables, loops, etc). See: http://docs.ansible.com/ansible/devel/playbooks_reuse_includes.html
14 lines
499 B
YAML
14 lines
499 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.
|
|
|
|
- import_tasks: Debian.yml
|
|
when: ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '<')
|
|
tags: php-fpm
|
|
|
|
- import_tasks: Ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu' or (ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '=='))
|
|
tags: php-fpm
|
|
|
|
# vim: set ts=2 sw=2:
|