(cherry picked from commit f8c741894a
)
Co-authored-by: Sam Doran <sdoran@redhat.com>
This commit is contained in:
parent
39dcfb1671
commit
e5b13bb9e3
1 changed files with 7 additions and 4 deletions
|
@ -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…
Reference in a new issue