ansible-php/tasks/main.yml

36 lines
859 B
YAML
Raw Normal View History

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
include_vars: "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
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 }}"
notify: restart php-fpm
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
when: php_install_fpm
2015-08-28 14:48:25 +07:00
- name: LINEINFILE | PHP 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 }}'
with_dict: "{{ 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