1
0
Fork 0
mirror of https://github.com/geerlingguy/ansible-role-postgresql.git synced 2024-11-11 13:50:50 -05:00
postgresql/tasks/setup-RedHat.yml
2016-09-29 11:03:13 -05:00

7 lines
328 B
YAML

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