1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +00:00

descriptor/SSHConnection: Expose use_scp parameter

Allow specifying to use scp for file transfer rather than sftp as
this is not supported by all targets.
This commit is contained in:
Marc Bonnici 2020-05-13 11:04:24 +01:00
parent e2489ea3a0
commit 66f0edec5b

View File

@ -344,6 +344,13 @@ CONNECTION_PARAMS = {
somewhere in the string it indicate where the command somewhere in the string it indicate where the command
to be run via sudo is to go. to be run via sudo is to go.
"""), """),
Parameter(
'use_scp', kind=bool,
default=False,
description="""
Allow using SCP as method of file transfer instead
of the default SFTP.
"""),
# Depreciated Parameters # Depreciated Parameters
Parameter( Parameter(
'telnet', kind=str, 'telnet', kind=str,