2015-05-28 11:32:57 +02:00
|
|
|
---
|
|
|
|
- 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
|
2016-01-26 19:51:14 +01:00
|
|
|
tags: [ 'postgres', 'postgresql', 'tomcat' ]
|
2015-05-28 11:32:57 +02:00
|
|
|
|
|
|
|
- name: Install the mongodb client
|
|
|
|
apt: pkg={{ item }} state=installed
|
|
|
|
with_items:
|
|
|
|
- mongodb-clients
|
2016-01-26 19:51:14 +01:00
|
|
|
when:
|
|
|
|
- mongodb is not defined
|
|
|
|
- install_mongodb_client is defined and install_mongodb_client
|
|
|
|
tags: [ 'mongodb', 'tomcat' ]
|