[stable-2.9] Fix setup_postgresql integration test for CestOS 8 (#64871) (#64925)

(cherry picked from commit f8c741894a)

Co-authored-by: Sam Doran <sdoran@redhat.com>
pull/65015/head^2
Sam Doran 5 years ago committed by Matt Davis
parent 39dcfb1671
commit e5b13bb9e3

@ -107,11 +107,14 @@
# instLangs parameter).
- block:
- name: Install langpacks (rhel8 beta)
- name: Install langpacks (RHEL8)
yum:
name: glibc-all-langpacks
name:
- glibc-langpack-es
- glibc-langpack-pt
- glibc-all-langpacks
state: present
when: ansible_distribution_major_version|int >= 8
when: ansible_distribution_major_version is version('8', '>=')
- name: Check if locales need to be generated (RedHat)
shell: "localedef --list-archive | grep -a -q '^{{ locale }}$'"
@ -136,7 +139,7 @@
with_items:
- glibc-langpack-es
- glibc-langpack-pt
when: ansible_distribution == 'Fedora' and ansible_distribution_major_version|int >= 24
when: ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('24', '>=')
- name: enable postgresql service (FreeBSD)
lineinfile:

Loading…
Cancel
Save