ansible-roles/tomcat-apache-requirements/tasks/packages.yml

19 lines
398 B
YAML
Raw Normal View History

---
- name: Install the postgresql command line client
apt: pkg={{ item }} state=installed
with_items:
- postgresql-client
when: tomcat_install_jdbc is defined and tomcat_install_jdbc
tags:
- postgres
- postgresql
- name: Install the mongodb client
apt: pkg={{ item }} state=installed
with_items:
- mongodb-clients
when: mongodb is not defined
tags:
- mongodb