12 lines
441 B
YAML
12 lines
441 B
YAML
- name: update locale info
|
|
become: true
|
|
ansible.builtin.shell: |
|
|
set -exo pipefail
|
|
localedef --list-archive | ( grep -a -v en_US.utf8 || printf '' ) | xargs -r sudo localedef --delete-from-archive
|
|
cp /usr/lib/locale/locale-archive{,.tmpl}
|
|
build-locale-archive
|
|
when: >
|
|
( ansible_facts['distribution'] in ['CentOS'] ) and
|
|
( ansible_facts['distribution_major_version'] is version('8', '<') )
|
|
changed_when: false
|