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
|
|
|
|
|
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
|
|
|
|
service: name=php7.0-fpm state=started enabled=yes
|