From 32f0ad2f973dddf1a1ec6452121b2d7069d24ac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=B6hr?= Date: Thu, 13 Nov 2025 18:35:12 +0000 Subject: [PATCH] Fixed typo in decompress example documentation (#11150) --- 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