forked from ISTI-ansible-roles/ansible-roles
19 lines
398 B
YAML
19 lines
398 B
YAML
---
|
|
- 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
|
|
|