mirror of https://github.com/ansible/ansible.git
unarchive - add include option (#40522)
This should allow users to extract specific files from an archive as desired. Fixes #16130, #27081. * Rebase and make a few minor changes * Add changelog * Improve tests - move to separate tasks file - change assertions to check for exactly one file - use remote_tmp_dir for output dir * Make exclude and include mutually exclusive * Don't remove files needed by other tasks * Fix sanity tests * Improve feature documentation * Skip tests that use map() on CentOS 6 * Use fnmatch on include for zip archives This matches the behavior of exclude Co-authored-by: Sam Doran <sdoran@redhat.com>pull/72892/head
parent
6608f3aab3
commit
034e9b0252
@ -0,0 +1,4 @@
|
||||
minor_changes:
|
||||
- >
|
||||
unarchive - add ``include`` parameter to allow extracting specific files
|
||||
from an archive (https://github.com/ansible/ansible/pull/40522)
|
@ -0,0 +1,83 @@
|
||||
- name: Create a tar file with multiple files
|
||||
shell: tar cvf test-unarchive-multi.tar foo-unarchive-777.txt foo-unarchive.txt
|
||||
args:
|
||||
chdir: "{{ remote_tmp_dir }}"
|
||||
|
||||
- name: Create include test directories
|
||||
file:
|
||||
state: directory
|
||||
path: "{{ remote_tmp_dir }}/{{ item }}"
|
||||
loop:
|
||||
- include-zip
|
||||
- include-tar
|
||||
|
||||
- name: Unpack zip file include one file
|
||||
unarchive:
|
||||
src: "{{ remote_tmp_dir }}/test-unarchive.zip"
|
||||
dest: "{{ remote_tmp_dir }}/include-zip"
|
||||
include:
|
||||
- FOO-UNAR.TXT
|
||||
|
||||
- name: Verify that single file was unarchived
|
||||
find:
|
||||
paths: "{{ remote_tmp_dir }}/include-zip"
|
||||
register: unarchive_dir02
|
||||
|
||||
# The map filter was added in Jinja2 2.7, which is newer than the version on RHEL/CentOS 6,
|
||||
# so we skip this validation on those hosts
|
||||
- name: Verify that zip extraction included only one file
|
||||
assert:
|
||||
that:
|
||||
- file_names == ['FOO-UNAR.TXT']
|
||||
vars:
|
||||
file_names: "{{ unarchive_dir02.files | map(attribute='path') | map('basename') }}"
|
||||
when:
|
||||
- "ansible_facts.os_family == 'RedHat'"
|
||||
- ansible_facts.distribution_major_version is version('7', '>=')
|
||||
|
||||
- name: Unpack tar file include one file
|
||||
unarchive:
|
||||
src: "{{ remote_tmp_dir }}/test-unarchive-multi.tar"
|
||||
dest: "{{ remote_tmp_dir }}/include-tar"
|
||||
include:
|
||||
- foo-unarchive-777.txt
|
||||
|
||||
- name: verify that single file was unarchived from tar
|
||||
find:
|
||||
paths: "{{ remote_tmp_dir }}/include-tar"
|
||||
register: unarchive_dir03
|
||||
|
||||
- name: Verify that tar extraction included only one file
|
||||
assert:
|
||||
that:
|
||||
- file_names == ['foo-unarchive-777.txt']
|
||||
vars:
|
||||
file_names: "{{ unarchive_dir03.files | map(attribute='path') | map('basename') }}"
|
||||
when:
|
||||
- "ansible_facts.os_family == 'RedHat'"
|
||||
- ansible_facts.distribution_major_version is version('7', '>=')
|
||||
|
||||
- name: Check mutually exclusive parameters
|
||||
unarchive:
|
||||
src: "{{ remote_tmp_dir }}/test-unarchive-multi.tar"
|
||||
dest: "{{ remote_tmp_dir }}/include-tar"
|
||||
include:
|
||||
- foo-unarchive-777.txt
|
||||
exclude:
|
||||
- foo
|
||||
ignore_errors: yes
|
||||
register: unarchive_mutually_exclusive_check
|
||||
|
||||
- name: Check mutually exclusive parameters
|
||||
assert:
|
||||
that:
|
||||
- unarchive_mutually_exclusive_check is failed
|
||||
- "'mutually exclusive' in unarchive_mutually_exclusive_check.msg"
|
||||
|
||||
- name: "Remove include feature tests directory"
|
||||
file:
|
||||
state: absent
|
||||
path: "{{ remote_tmp_dir }}/{{ item }}"
|
||||
loop:
|
||||
- 'include-zip'
|
||||
- 'include-tar'
|
Loading…
Reference in New Issue