From 542772500b56a9b9da64d004bb0425f956bca617 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:11:47 +0100 Subject: [PATCH] [PR #11150/32f0ad2f backport][stable-11] Fixed typo in decompress example documentation (#11152) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo in decompress example documentation (#11150) (cherry picked from commit 32f0ad2f973dddf1a1ec6452121b2d7069d24ac9) Co-authored-by: Thomas Löhr --- plugins/modules/decompress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/decompress.py b/plugins/modules/decompress.py index 03be61a8e6..d355ed4d8b 100644 --- a/plugins/modules/decompress.py +++ b/plugins/modules/decompress.py @@ -71,7 +71,7 @@ EXAMPLES = r""" - name: Decompress file compressed with bzip2 community.general.decompress: src: /path/to/file.txt.bz2 - dest: /path/to/file.bz2 + dest: /path/to/file.txt format: bz2 - name: Decompress file and delete the compressed file afterwards