You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
I am trying to copy backup file from one remote windows server to another windows server using below playbook but the backup file is not copying. Although the playbook is running successful then also the backup file is not present at the destination. Below is the playbook I am using.
---
- hosts: SQLSERVER
tasks:
- name: Sync SQLSERVER to SQLSERVER2
win_copy:
src: E:\backups
dest: \SQLSERVER2\d$\Retention10days\
remote_src: yes
recurse: yes
Thanks and regards,
Praveen Singh
Wei-Yen Tan
unread,
Feb 16, 2021, 3:46:06 AM2/16/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
Sounds like you are hitting the double hop issue with winrm
From: 'Praveen Kumar Singh' via Ansible Project <ansible...@googlegroups.com> Sent: Tuesday, February 16, 2021 9:32:28 PM To: Ansible Project <ansible...@googlegroups.com> Subject: [ansible-project] Win_copy Not working