mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
Fix copy when force=no and update _remote_md5 docs.
Previously setting force=no caused copy to subversively fail when target did not exist on remote host. Caused by Runner._remote_md5 returning 1 when files don't exist, rather than 0.
This commit is contained in:
parent
3e774fedea
commit
7de718cd51
2 changed files with 3 additions and 3 deletions
|
@ -621,7 +621,7 @@ class Runner(object):
|
|||
# *****************************************************
|
||||
|
||||
def _remote_md5(self, conn, tmp, path):
|
||||
''' takes a remote md5sum without requiring python, and returns 0 if no file '''
|
||||
''' takes a remote md5sum without requiring python, and returns 1 if no file '''
|
||||
|
||||
path = pipes.quote(path)
|
||||
# The following test needs to be SH-compliant. BASH-isms will
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue