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

8 lines
242 B
YAML
Raw Normal View History

---
- 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 }}"