13 lines
378 B
YAML
13 lines
378 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: "{{ postgresql_python_library }}"
|
|
state: installed
|
|
enablerepo: "{{ postgresql_enablerepo }}"
|