ansible-roles/php/tasks/main.yml

20 lines
423 B
YAML
Raw Normal View History

2017-08-03 22:13:50 +02:00
- name: Ensure php5-fpm package is installed
2017-02-21 12:03:46 +01:00
apt:
name: php5-fpm
state: present
when:
- ansible_distribution == "Debian"
- ansible_distribution_release == "jessie"
2017-08-03 22:13:50 +02:00
tags:
- php-fpm
- name: Ensure php-fpm packages is installed
apt:
name: php-fpm
state: present
when:
- ansible_distribution == "Debian"
- ansible_distribution_major_version | version_compare('9', '>=')
2017-08-03 22:13:50 +02:00
tags:
- php-fpm