mirror of
https://github.com/geerlingguy/ansible-role-postgresql.git
synced 2024-10-27 05:23:03 -04:00
18 lines
580 B
YAML
18 lines
580 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 }}"
|
|
|
|
- name: Ensure all configured locales are present.
|
|
locale_gen: "name={{ item }} state=present"
|
|
with_items: "{{ postgresql_locales }}"
|
|
register: locale_gen_result
|
|
|
|
- name: Force-restart PostgreSQL after new locales are generated.
|
|
service:
|
|
name: "{{ postgresql_daemon }}"
|
|
state: restarted
|
|
when: locale_gen_result.changed
|