ansible-php/tasks/php54max.yml

12 lines
280 B
YAML
Raw Normal View History

2015-07-23 22:44:19 +07:00
---
- name: APT | Install php-apcu
apt: pkg=php-apc state=latest
2015-07-24 14:49:16 +07:00
- name: SET_FACT | Set APC
set_fact: php_apc_package="apc"
2015-07-23 22:44:19 +07:00
- name: TEMPLATE | Configure APC
2015-07-23 23:10:17 +07:00
template: src=etc/php5/mods-available/apcu.ini.j2 dest=/etc/php5/mods-available/apc.ini
2015-07-23 22:44:19 +07:00
notify: restart php-fpm