summaryrefslogtreecommitdiff
path: root/changelogs
diff options
context:
space:
mode:
authorTadej Borovšak <70951+tadeboro@users.noreply.github.com>2022-01-19 02:02:38 +0100
committerGitHub <noreply@github.com>2022-01-18 17:02:38 -0800
commit6da3cf51a329194d5b81fe1e8a10797eecfeb0fa (patch)
tree4f8ab44c4e25b25e0c019c461914de9d81e1d6f3 /changelogs
parent070ae15c522ae2eb7481cb9ef1cc20b8a49b4f5c (diff)
downloadansible-6da3cf51a329194d5b81fe1e8a10797eecfeb0fa.tar.gz
Fix zip content filtering in unarchive module (#76069) (#76420)
When we introduced an include parameter to the unarchive module, we inadvertenly flipped the exclusion logic. This flip meant that the unarchive module started rejecting files that should be extracted. This commit flips the bad logic and adds some tests that will make sure things do not go bad again. (cherry picked from commit f92830d16e2fcca394a69b13e1017350e07152a3)
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/fragments/76069-fix-unarchive-file-listing-in-zip.yaml3
1 files changed, 3 insertions, 0 deletions
diff --git a/changelogs/fragments/76069-fix-unarchive-file-listing-in-zip.yaml b/changelogs/fragments/76069-fix-unarchive-file-listing-in-zip.yaml
new file mode 100644
index 0000000000..31b91c4d98
--- /dev/null
+++ b/changelogs/fragments/76069-fix-unarchive-file-listing-in-zip.yaml
@@ -0,0 +1,3 @@
+bugfixes:
+- unarchive - Fix zip archive file listing that caused issues with content
+ postprocessing (https://github.com/ansible/ansible/issues/76067).