From 4241acb814d3996eb803a6739c63a91de11b8420 Mon Sep 17 00:00:00 2001 From: Hagen <2806328+derhagen@users.noreply.github.com> Date: Mon, 16 Dec 2024 11:52:18 +0100 Subject: [PATCH] Fix podman_container_copy examples Signed-off-by: hagene --- plugins/modules/podman_container_copy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/podman_container_copy.py b/plugins/modules/podman_container_copy.py index 880b248..9163644 100644 --- a/plugins/modules/podman_container_copy.py +++ b/plugins/modules/podman_container_copy.py @@ -58,12 +58,12 @@ options: EXAMPLES = r""" - name: Copy file "test.yml" on the host to the "apache" container's root folder - containers.podman.podman_search: + containers.podman.podman_container_copy: src: test.yml dest: / container: apache - name: Copy file "test.yml" in the "apache" container's root folder to the playbook's folder - containers.podman.podman_search: + containers.podman.podman_container_copy: src: /test.yml dest: ./ container: apache