mirror of
https://github.com/geerlingguy/ansible-role-postgresql.git
synced 2025-03-10 17:26:20 -04:00
7 lines
242 B
YAML
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 }}"
|