ansible-role-php/tasks/main.yml

35 lines
1004 B
YAML
Raw Normal View History

---
2014-04-23 18:26:37 +02:00
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
- name: Ensure PHP packages are installed (RedHat).
2014-04-23 18:26:37 +02:00
yum: >
name={{ item }}
state=installed
enablerepo={{ php_enablerepo }}
with_items: php_packages
notify: restart webserver
when: ansible_os_family == 'RedHat'
2014-04-23 18:26:37 +02:00
- name: Ensure PHP packages are installed (Debian).
apt: >
name={{ item }}
state=installed
with_items: php_packages
notify: restart webserver
2014-04-23 18:26:37 +02:00
when: ansible_os_family == 'Debian'
- name: Place PHP configuration files in place.
2014-04-23 18:26:37 +02:00
template: >
src={{ item.src }}
dest={{ item.dest }}
owner=root group=root mode=644
with_items:
2014-04-23 18:26:37 +02:00
- { src: php.ini.j2, dest: "{{ php_conf_path }}/php.ini" }
- { src: apc.ini.j2, dest: "{{ php_extension_conf_path }}/{{ php_apc_conf_filename }}" }
notify: restart webserver
- name: Ensure php-fpm is started and enabled at boot (if configured).
service: name=php-fpm state=started enabled=yes
when: php_enable_php_fpm