ansible-personal/roles/php-fpm/tasks/main.yml
Alan Orth da63e67614 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.
2016-04-22 11:25:35 +03:00

12 lines
187 B
YAML

---
- include: Debian.yml
when: ansible_distribution == 'Debian'
tags: php-fpm
- include: Ubuntu.yml
when: ansible_distribution == 'Ubuntu'
tags: php-fpm
# vim: set ts=2 sw=2: