Merge branch 'fix-php-dynamic-include'

This commit is contained in:
Jeff Geerling 2016-11-15 19:24:45 -06:00
commit 391bc99ed5
1 changed files with 7 additions and 0 deletions

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