mirror of https://github.com/ansible/ansible.git
unarchive: fix non-english locales (#76542)
* unarchive: fix non-english locales
For GNU Gettext, the LANGUAGE environment variable takes precedence over LANG or LC_ALL. On systems where LANGUAGE was set to a non-english locale, the output of the tar command therefore not understood and the module failed silently ("changed": false, but the archive was not extracted).
* add tests
* changelog
pull/76559/head
parent
146a4bcd0d
commit
49e1cb9f42
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- unarchive - Make extraction work when the LANGUAGE environment variable is set to a non-English locale.
|
||||||
@ -0,0 +1,41 @@
|
|||||||
|
- name: test non-ascii with different LANGUAGE
|
||||||
|
when: ansible_os_family == 'Debian'
|
||||||
|
block:
|
||||||
|
- name: install de language pack
|
||||||
|
apt:
|
||||||
|
name: language-pack-de
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: create our unarchive destination
|
||||||
|
file:
|
||||||
|
path: "{{ remote_tmp_dir }}/test-unarchive-nonascii-くらとみ-tar-gz"
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: test that unarchive works with an archive that contains non-ascii filenames
|
||||||
|
unarchive:
|
||||||
|
# Both the filename of the tarball and the filename inside the tarball have
|
||||||
|
# nonascii chars
|
||||||
|
src: "test-unarchive-nonascii-くらとみ.tar.gz"
|
||||||
|
dest: "{{ remote_tmp_dir }}/test-unarchive-nonascii-くらとみ-tar-gz"
|
||||||
|
mode: "u+rwX,go+rX"
|
||||||
|
remote_src: no
|
||||||
|
register: nonascii_result0
|
||||||
|
|
||||||
|
- name: Check that file is really there
|
||||||
|
stat:
|
||||||
|
path: "{{ remote_tmp_dir }}/test-unarchive-nonascii-くらとみ-tar-gz/storage/àâæçéèïîôœ(copy)!@#$%^&-().jpg"
|
||||||
|
register: nonascii_stat0
|
||||||
|
|
||||||
|
- name: Assert that nonascii tests succeeded
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "nonascii_result0.changed == true"
|
||||||
|
- "nonascii_stat0.stat.exists == true"
|
||||||
|
|
||||||
|
- name: remove nonascii test
|
||||||
|
file:
|
||||||
|
path: "{{ remote_tmp_dir }}/test-unarchive-nonascii-くらとみ-tar-gz"
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
environment:
|
||||||
|
LANGUAGE: de_DE:en
|
||||||
Loading…
Reference in New Issue