ansible-roles/webapps/evoadmin-web/tasks/packages.yml
Patrick Marchand 67664ec0e2 Pass evoadmin-web role through yamllint and ansible-lint
Recommends using true or false values directly instead of the truthy
and falsie yes True and etc. This also means that we can get rid
of the cast to booleans in some of the checks.

The other fixes are mostly in the realm of indentation and whitespace.
2019-08-27 09:58:08 -04:00

23 lines
381 B
YAML

---
- include_role:
name: apt
tasks_from: evolix_public.yml
- name: Install PHP packages
apt:
name: '{{ item }}'
state: present
with_items:
- php-pear
- php-log
- name: Install PHP5 packages
apt:
name: '{{ item }}'
state: present
allow_unauthenticated: true
with_items:
- php5-pam
when: ansible_distribution_release == "jessie"