roles/php-fpm: Split up task for Debian and Ubuntu

Debian 8 and Ubuntu 16.04 use PHP 5.6 and 7.0, respectively, and
the php-fpm versions use slightly different configs and service
names.
This commit is contained in:
2016-04-16 00:39:05 +03:00
parent 904bb9c094
commit da63e67614
4 changed files with 70 additions and 24 deletions

View File

@ -1,5 +1,10 @@
---
# For Debian 8
- name: restart php5-fpm
service: name=php5-fpm state=restarted
# For Ubuntu 16.04
- name: restart php7.0-fpm
service: name=php7.0-fpm state=restarted
# vim: set ts=2 sw=2: