PHP 5.4 OK on Debian Wheezy

This commit is contained in:
Emilien Mantel
2015-07-23 17:10:15 +02:00
parent e87f2a8d34
commit 227b235233
7 changed files with 455 additions and 2 deletions

View File

@@ -8,3 +8,7 @@
with_items: php_ini
notify: restart php-fpm
- name: TEMPLATE | Deploy pool configuration
template: src=etc/php5/fpm/pool.d/pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.pool_name }}.conf
with_items: php_fpm_poold
notify: restart php-fpm

View File

@@ -2,12 +2,12 @@
- name: APT | Install PHP packages
apt: pkg={{ item }} state=latest update_cache=yes cache_valid_time=3600
with_items:
with_flattened:
- php_packages
- php_extra_packages
- name: INCLUDE | PHP-FPM
include: php-fpm.yml
include: fpm.yml
when: php_install_fpm
- name: SHELL | Get PHP version on apt

0
tasks/php54max.yml Normal file
View File