From 8fd40ed9e44ed4cce1bc8b2bf7cd0b635c3e8ebb Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:11:50 +0100 Subject: [PATCH] [PR #11150/32f0ad2f backport][stable-12] Fixed typo in decompress example documentation (#11153) 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 e65a4f4448..53ba87a11f 100644 --- a/plugins/modules/decompress.py +++ b/plugins/modules/decompress.py @@ -68,7 +68,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