mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
Fix command building for scp if ssh
This commit is contained in:
parent
620fad9f8d
commit
71014ab01e
1 changed files with 6 additions and 6 deletions
|
@ -407,12 +407,12 @@ class Connection(ConnectionBase):
|
||||||
|
|
||||||
if C.DEFAULT_SCP_IF_SSH:
|
if C.DEFAULT_SCP_IF_SSH:
|
||||||
cmd.append('scp')
|
cmd.append('scp')
|
||||||
cmd += self._common_args
|
cmd.extend(self._common_args)
|
||||||
cmd.append(in_path,host + ":" + pipes.quote(out_path))
|
cmd.extend([in_path, '{0}:{1}'.format(host, pipes.quote(out_path))])
|
||||||
indata = None
|
indata = None
|
||||||
else:
|
else:
|
||||||
cmd.append('sftp')
|
cmd.append('sftp')
|
||||||
cmd += self._common_args
|
cmd.extend(self._common_args)
|
||||||
cmd.append(host)
|
cmd.append(host)
|
||||||
indata = "put {0} {1}\n".format(pipes.quote(in_path), pipes.quote(out_path))
|
indata = "put {0} {1}\n".format(pipes.quote(in_path), pipes.quote(out_path))
|
||||||
|
|
||||||
|
@ -440,12 +440,12 @@ class Connection(ConnectionBase):
|
||||||
|
|
||||||
if C.DEFAULT_SCP_IF_SSH:
|
if C.DEFAULT_SCP_IF_SSH:
|
||||||
cmd.append('scp')
|
cmd.append('scp')
|
||||||
cmd += self._common_args
|
cmd.extend(self._common_args)
|
||||||
cmd += ('{0}:{1}'.format(host, in_path), out_path)
|
cmd.extend(['{0}:{1}'.format(host, in_path), out_path])
|
||||||
indata = None
|
indata = None
|
||||||
else:
|
else:
|
||||||
cmd.append('sftp')
|
cmd.append('sftp')
|
||||||
cmd += self._common_args
|
cmd.extend(self._common_args)
|
||||||
cmd.append(host)
|
cmd.append(host)
|
||||||
indata = "get {0} {1}\n".format(in_path, out_path)
|
indata = "get {0} {1}\n".format(in_path, out_path)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue