Fixes #160: Dynamically include files to prevent errors with 2.2.x.

This commit is contained in:
Jeff Geerling 2016-11-15 19:16:38 -06:00
parent 8ad3424d05
commit 8e227e5bf2

View File

@ -46,16 +46,23 @@
# Setup/install tasks.
- include: setup-RedHat.yml
when: (php_install_from_source == false) and (ansible_os_family == 'RedHat')
static: no
- include: setup-Debian.yml
when: (php_install_from_source == false) and (ansible_os_family == 'Debian')
static: no
# Install PHP from source when php_install_from_source is true.
- include: install-from-source.yml
when: php_install_from_source == true
static: no
# Configure PHP.
- include: configure.yml
static: no
- include: configure-apcu.yml
static: no
- include: configure-opcache.yml
static: no
- include: configure-fpm.yml
static: no