2017-01-13 02:45:22 +00:00
|
|
|
---
|
2017-01-14 14:17:50 +00:00
|
|
|
- name: Install PHP libraries
|
|
|
|
apt: pkg={{ item }} state=latest
|
|
|
|
with_items:
|
|
|
|
- php-mysql
|
|
|
|
- php-xml
|
2018-06-10 19:40:30 +00:00
|
|
|
- php-gd
|
2017-01-14 14:17:50 +00:00
|
|
|
|
2017-01-13 02:43:11 +00:00
|
|
|
- name: Install php-fpm
|
|
|
|
apt: pkg=php-fpm state=latest
|
2017-01-13 02:49:33 +00:00
|
|
|
- name: Start PHP-FPM daemon, and make sure it is started on boot
|
2018-06-10 17:10:56 +00:00
|
|
|
when: ansible_distribution_release == 'xenial'
|
2017-01-13 02:49:33 +00:00
|
|
|
service: name=php7.0-fpm state=started enabled=yes
|
2018-06-10 17:10:56 +00:00
|
|
|
- name: Start PHP-FPM daemon, and make sure it is started on boot
|
|
|
|
when: ansible_distribution_release == 'bionic'
|
|
|
|
service: name=php7.2-fpm state=started enabled=yes
|