2015-07-22 14:40:20 +07:00
|
|
|
---
|
2015-07-23 15:40:33 +07:00
|
|
|
|
2018-03-18 23:28:57 +07:00
|
|
|
- name: INCLUDE_VARS | Related to OS family
|
|
|
|
include_vars: "OS_Family_{{ ansible_os_family }}.yml"
|
2016-01-22 21:57:29 +07:00
|
|
|
|
2018-03-18 23:28:57 +07:00
|
|
|
- name: INCLUDE_VARS | Related to OS version
|
2018-03-19 01:30:21 +07:00
|
|
|
include_vars: "{{ ansible_distribution }}-{{ ansible_distribution_release }}.yml"
|
2016-12-08 23:38:10 +07:00
|
|
|
|
2015-07-23 15:40:33 +07:00
|
|
|
- name: APT | Install PHP packages
|
2018-03-18 23:28:57 +07:00
|
|
|
apt:
|
|
|
|
pkg: "{{ item }}"
|
|
|
|
state: present
|
|
|
|
update_cache: yes
|
|
|
|
cache_valid_time: 3600
|
2015-07-23 23:10:17 +07:00
|
|
|
with_flattened:
|
2016-03-06 21:36:50 +07:00
|
|
|
- "{{ php_packages }}"
|
|
|
|
- "{{ php_extra_packages }}"
|
2017-03-16 22:10:18 +07:00
|
|
|
notify: restart php-fpm
|
2018-03-19 03:29:47 +07:00
|
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
|
|
|
|
- name: PKGNG | Install PHP packages
|
|
|
|
pkgng:
|
|
|
|
name: "{{ item }}"
|
|
|
|
with_flattened:
|
|
|
|
- "{{ php_packages }}"
|
|
|
|
- "{{ php_extra_packages }}"
|
|
|
|
notify: restart php-fpm
|
|
|
|
when: ansible_os_family == 'FreeBSD'
|
2015-07-23 15:40:33 +07:00
|
|
|
|
|
|
|
- name: INCLUDE | PHP-FPM
|
2015-07-23 22:10:15 +07:00
|
|
|
include: fpm.yml
|
2015-07-23 15:40:33 +07:00
|
|
|
|
2018-03-19 03:29:47 +07:00
|
|
|
- name: LINEINFILE | PHP CLI configuration
|
2017-11-10 18:19:39 +07:00
|
|
|
lineinfile:
|
2018-03-18 23:28:57 +07:00
|
|
|
dest: '{{ php_cli_ini }}'
|
2017-11-10 18:19:39 +07:00
|
|
|
regexp: '^;?{{ item.key }}'
|
|
|
|
line: '{{ item.key }} = {{ item.value }}'
|
2018-03-19 03:29:47 +07:00
|
|
|
with_dict: "{{ php_ini | combine(php_ini_cli) }}"
|
2015-08-28 14:48:25 +07:00
|
|
|
|
2015-07-27 23:09:52 +07:00
|
|
|
- name: INCLUDE | Xdebug
|
|
|
|
include: xdebug.yml
|
2015-07-23 15:40:33 +07:00
|
|
|
|
2016-01-22 21:57:29 +07:00
|
|
|
- name: APT | Install and configure opcache
|
|
|
|
include: opcache.yml
|