mirror of
https://github.com/geerlingguy/ansible-role-postgresql.git
synced 2025-10-02 23:12:34 -04:00
Add support for installing packages on Arch Linux
This commit is contained in:
parent
92598e73dd
commit
204b6725f8
2 changed files with 26 additions and 2 deletions
|
@ -3,12 +3,15 @@
|
|||
- include_tasks: variables.yml
|
||||
|
||||
# Setup/install tasks.
|
||||
- include_tasks: setup-RedHat.yml
|
||||
when: ansible_os_family == 'RedHat'
|
||||
- include_tasks: setup-Archlinux.yml
|
||||
when: ansible_os_family == 'Archlinux'
|
||||
|
||||
- include_tasks: setup-Debian.yml
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- include_tasks: setup-RedHat.yml
|
||||
when: ansible_os_family == 'RedHat'
|
||||
|
||||
- include_tasks: initialize.yml
|
||||
- include_tasks: configure.yml
|
||||
|
||||
|
|
21
tasks/setup-Archlinux.yml
Normal file
21
tasks/setup-Archlinux.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
- name: Ensure PostgreSQL Python libraries are installed.
|
||||
pacman:
|
||||
name: "{{ postgresql_python_library }}"
|
||||
state: present
|
||||
|
||||
- name: Ensure PostgreSQL packages are installed.
|
||||
pacman:
|
||||
name: "{{ postgresql_packages }}"
|
||||
state: present
|
||||
|
||||
- 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.
|
||||
systemd:
|
||||
name: "{{ postgresql_daemon }}"
|
||||
state: restarted
|
||||
when: locale_gen_result.changed
|
Loading…
Add table
Add a link
Reference in a new issue