mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #587 from dagwieers/ssh-fetch
Wrong evaluation of a local file before fetching the remote file
This commit is contained in:
commit
420337b50c
1 changed files with 0 additions and 2 deletions
|
@ -126,8 +126,6 @@ class SSHConnection(object):
|
||||||
|
|
||||||
def fetch_file(self, in_path, out_path):
|
def fetch_file(self, in_path, out_path):
|
||||||
''' fetch a file from remote to local '''
|
''' fetch a file from remote to local '''
|
||||||
if not os.path.exists(in_path):
|
|
||||||
raise errors.AnsibleFileNotFound("file or module does not exist: %s" % in_path)
|
|
||||||
sftp_cmd = ["sftp"] + self.common_args + [self.host]
|
sftp_cmd = ["sftp"] + self.common_args + [self.host]
|
||||||
p = subprocess.Popen(sftp_cmd, stdin=subprocess.PIPE,
|
p = subprocess.Popen(sftp_cmd, stdin=subprocess.PIPE,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
|
Loading…
Reference in a new issue