1
0
Fork 0
mirror of https://github.com/geerlingguy/ansible-role-postgresql.git synced 2025-03-10 17:26:20 -04:00
postgresql/tasks/setup-Debian.yml
2016-09-29 11:03:13 -05:00

7 lines
242 B
YAML

---
- name: Ensure PostgreSQL Python libraries are installed.
apt: "name=python-psycopg2 state=installed"
- name: Ensure PostgreSQL packages are installed.
apt: "name={{ item }} state=installed"
with_items: "{{ postgresql_packages }}"