2022-05-02 22:03:37 -05:00
|
|
|
- name: update locale info
|
|
|
|
|
become: true
|
2022-05-05 08:17:48 -05:00
|
|
|
ansible.builtin.shell: |
|
2022-06-22 10:00:04 -05:00
|
|
|
set -exo pipefail
|
|
|
|
|
localedef --list-archive | ( grep -a -v en_US.utf8 || printf '' ) | xargs -r sudo localedef --delete-from-archive
|
2022-05-02 22:03:37 -05:00
|
|
|
cp /usr/lib/locale/locale-archive{,.tmpl}
|
|
|
|
|
build-locale-archive
|
|
|
|
|
when: >
|
2022-06-22 10:00:04 -05:00
|
|
|
( ansible_facts['distribution'] in ['CentOS'] ) and
|
|
|
|
|
( ansible_facts['distribution_major_version'] is version('8', '<') )
|
|
|
|
|
changed_when: false
|