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: |
|
|
|
|
|
set -eo pipefail
|
2022-05-02 22:03:37 -05:00
|
|
|
localedef --list-archive | grep -a -v en_US.utf8 | xargs sudo localedef --delete-from-archive
|
|
|
|
|
cp /usr/lib/locale/locale-archive{,.tmpl}
|
|
|
|
|
build-locale-archive
|
|
|
|
|
when: >
|
|
|
|
|
ansible_facts['distribution'] in ['CentOS']
|