Fix setup_postgresql integration test for CestOS 8 (#64871)

pull/64913/head
Sam Doran 5 years ago committed by GitHub
parent 79a38c8a3a
commit f8c741894a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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