mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
mgr/cephadm: use SFTP instead of SCP to copy cephadm remote files
fixes: https://tracker.ceph.com/issues/59298 Signed-off-by: Redouane Kachach <rkachach@redhat.com>
This commit is contained in:
parent
66552a560f
commit
99148b4a18
@ -237,7 +237,8 @@ class SSHManager:
|
||||
f.write(content)
|
||||
f.flush()
|
||||
conn = await self._remote_connection(host, addr)
|
||||
await asyncssh.scp(f.name, (conn, tmp_path))
|
||||
async with conn.start_sftp_client() as sftp:
|
||||
await sftp.put(f.name, tmp_path)
|
||||
if uid is not None and gid is not None and mode is not None:
|
||||
# shlex quote takes str or byte object, not int
|
||||
await self._check_execute_command(host, ['chown', '-R', str(uid) + ':' + str(gid), tmp_path], addr=addr)
|
||||
|
Loading…
Reference in New Issue
Block a user