From e2f93a0c66003ac8780551c57a936ec067ee6b0e Mon Sep 17 00:00:00 2001 From: Ethan Williams <37885088+ethanjjjjjjj@users.noreply.github.com> Date: Sat, 6 Jul 2024 19:55:12 +0100 Subject: [PATCH] fix mis-named keys and invalid values in copy into example (#915) --- plugins/modules/docker_container_copy_into.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/modules/docker_container_copy_into.py b/plugins/modules/docker_container_copy_into.py index 2af99152..67411d87 100644 --- a/plugins/modules/docker_container_copy_into.py +++ b/plugins/modules/docker_container_copy_into.py @@ -129,9 +129,9 @@ EXAMPLES = ''' container: mydata path: /home/user/bin/runme.o container_path: /bin/runme - owner: 0 # root - group: 0 # root - mode: 0o755 # readable and executable by all users, writable by root + owner_id: 0 # root + group_id: 0 # root + mode: 0755 # readable and executable by all users, writable by root ''' RETURN = '''