ansible-php/tasks/xdebug.yml

42 lines
962 B
YAML
Raw Permalink Normal View History

2015-07-27 23:09:52 +07:00
---
2017-11-28 14:28:41 +07:00
- block:
2018-03-19 03:29:47 +07:00
- name: APT | Install xdebug
2017-11-28 14:28:41 +07:00
apt:
2018-03-19 03:29:47 +07:00
pkg: "{{ php_xdebug_package }}"
2017-11-28 14:28:41 +07:00
state: present
update_cache: yes
cache_valid_time: 3600
2018-03-19 03:29:47 +07:00
when: ansible_os_family == 'Debian'
- name: PKGNG | Install xdebug
pkgng:
name: "{{ php_xdebug_package }}"
when: ansible_os_family == 'FreeBSD' and php_xdebug_package is defined
2017-11-28 14:28:41 +07:00
- name: TEMPLATE | Deploy module configurations
template:
src: "etc/__php__/mods-available/xdebug.ini.j2"
dest: "{{ php_mods_dir }}/xdebug.ini"
owner: root
mode: 0644
notify: restart php-fpm
when: php_install_xdebug
2018-03-19 03:29:47 +07:00
- block:
- name: APT | Uninstall xdebug
apt:
pkg: "{{ php_xdebug_package }}"
state: absent
when: ansible_os_family == 'Debian'
- name: PKGNG | Install xdebug
pkgng:
name: "{{ php_xdebug_package }}"
when: ansible_os_family == 'FreeBSD' and php_xdebug_package is defined
2017-11-28 14:28:41 +07:00
when: not php_install_xdebug