Fix naming rule

This commit is contained in:
fidanf 2022-10-31 11:40:32 +01:00
parent 74ae0462fc
commit 9b37a6d4d5
1 changed files with 20 additions and 10 deletions

View File

@ -58,29 +58,39 @@
when: php_fpm_conf_path is not defined
# Setup/install tasks.
- include_tasks: setup-Debian.yml
- name: Setup Debian
include_tasks: setup-Debian.yml
when:
- not php_install_from_source
- ansible_os_family == 'Debian'
# Install PHP from source when php_install_from_source is true.
- include_tasks: install-from-source.yml
- name: Install from source
include_tasks: install-from-source.yml
when: php_install_from_source
# Install cassandra PHP driver for Apache Cassandra (compiled from sources)
- include_tasks: install-cassandra-driver.yml
- name: Install cassandra driver
include_tasks: install-cassandra-driver.yml
when: php_cassandra_php_driver_install
# Install pdo_dblib PHP driver for Microsoft SQL Server
- include_tasks: install-mssql-driver.yml
- name: Install MSSQL driver
include_tasks: install-mssql-driver.yml
when: php_pdo_dblib_driver_install
# Install PECL extensions
- include_tasks: install-pecl-extensions.yml
- name: Install PECL extensions
include_tasks: install-pecl-extensions.yml
# Configure PHP.
- include_tasks: configure.yml
- include_tasks: configure-apcu.yml
- include_tasks: configure-opcache.yml
- include_tasks: configure-xdebug.yml
- include_tasks: configure-fpm.yml
- name: Configure PHP
include_tasks: configure.yml
- name: Configure APCu extension
include_tasks: configure-apcu.yml
- name: Configure opcache
include_tasks: configure-opcache.yml
- name: Configure xdebug
include_tasks: configure-xdebug.yml
- name: Configure FPM
include_tasks: configure-fpm.yml