From dbb1f01a56c70ea4477a3ab23c6d541b9ebc1d37 Mon Sep 17 00:00:00 2001 From: egalegal123 <39988258+egalegal123@users.noreply.github.com> Date: Tue, 9 Jul 2019 18:58:43 +0200 Subject: [PATCH] Update vsphere_file.py (#58874) wrong module name in examples --- lib/ansible/modules/cloud/vmware/vsphere_file.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/vmware/vsphere_file.py b/lib/ansible/modules/cloud/vmware/vsphere_file.py index a627d808143..942b6daa70f 100644 --- a/lib/ansible/modules/cloud/vmware/vsphere_file.py +++ b/lib/ansible/modules/cloud/vmware/vsphere_file.py @@ -91,7 +91,7 @@ EXAMPLES = r''' delegate_to: localhost - name: Create a directory on a datastore - vsphere_copy: + vsphere_file: host: '{{ vhost }}' username: '{{ vuser }}' password: '{{ vpass }}' @@ -115,7 +115,7 @@ EXAMPLES = r''' ignore_errors: yes - name: Delete a file on a datastore - vsphere_copy: + vsphere_file: host: '{{ vhost }}' username: '{{ vuser }}' password: '{{ vpass }}'