ansible-php/tasks/main.yml

41 lines
1.1 KiB
YAML
Raw Normal View History

2015-07-22 14:40:20 +07:00
---
2015-07-23 15:40:33 +07:00
- name: APT | Install PHP packages
apt: pkg={{ item }} state=latest update_cache=yes cache_valid_time=3600
2015-07-23 23:10:17 +07:00
with_flattened:
2015-07-23 15:40:33 +07:00
- php_packages
- php_extra_packages
2015-07-27 23:09:52 +07:00
- name: COMMAND | Get PHP extension dir
command: php-config --extension-dir
changed_when: false
register: php_extension_dir
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
lineinfile: dest=/etc/php5/cli/php.ini regexp='^;?{{ item.key }}' line='{{ item.key }} = {{ item.value }}'
with_flattened:
- php_ini
- php_ini_cli
2015-07-27 23:09:52 +07:00
- name: INCLUDE | Xdebug
include: xdebug.yml
when: php_install_xdebug
2015-07-23 23:10:17 +07:00
- name: SHELL | Get PHP version on apt
2015-07-27 23:14:25 +07:00
shell: php -v | head -n 1 | awk '{ print $2 }'
2015-07-23 15:40:33 +07:00
register: php_apt_version
changed_when: false
- name: APT | Install and configure php-apcu / opcache (PHP 5.5+ only)
include: php55min.yml
when: php_apt_version.stdout|version_compare('5.5', 'ge', False)
- name: APT | Install and configure php-apc (PHP 5.4 max only)
include: php54max.yml
when: php_apt_version.stdout|version_compare('5.5', 'lt', False)