2019-09-28 02:42:13 +00:00
|
|
|
name: 'SCP Command to Transfer Files'
|
|
|
|
description: 'How to Use SCP Command to Transfer Files/Folders in Linux'
|
|
|
|
author: 'Bo-Yi Wu'
|
|
|
|
inputs:
|
|
|
|
host:
|
|
|
|
description: 'scp remote host'
|
|
|
|
port:
|
|
|
|
description: 'scp remote port'
|
2019-09-30 08:58:33 +00:00
|
|
|
default: 22
|
2019-09-28 02:42:13 +00:00
|
|
|
username:
|
|
|
|
description: 'scp username'
|
|
|
|
password:
|
|
|
|
description: 'scp password'
|
|
|
|
timeout:
|
|
|
|
description: 'timeout for ssh to remote host'
|
2019-09-28 04:41:21 +00:00
|
|
|
default: "30s"
|
2019-09-28 02:42:13 +00:00
|
|
|
command_timeout:
|
|
|
|
description: 'timeout for scp command'
|
2019-11-30 15:17:05 +00:00
|
|
|
default: "10m"
|
2019-09-28 02:42:13 +00:00
|
|
|
key:
|
|
|
|
description: 'content of ssh private key. ex raw content of ~/.ssh/id_rsa'
|
|
|
|
key_path:
|
|
|
|
description: 'path of ssh private key'
|
2020-01-20 15:07:25 +00:00
|
|
|
passphrase:
|
|
|
|
description: 'ssh key passphrase'
|
2020-05-22 01:44:56 +00:00
|
|
|
fingerprint:
|
|
|
|
description: 'fingerprint SHA256 of the host public key, default is to skip verification'
|
2020-05-24 06:24:45 +00:00
|
|
|
use_insecure_cipher:
|
|
|
|
description: 'include more ciphers with use_insecure_cipher'
|
|
|
|
default: false
|
2019-09-28 02:42:13 +00:00
|
|
|
target:
|
2019-09-28 04:13:03 +00:00
|
|
|
description: 'target path on the server'
|
2019-09-28 02:42:13 +00:00
|
|
|
source:
|
|
|
|
description: 'scp file list'
|
|
|
|
rm:
|
|
|
|
description: 'remove target folder before upload data'
|
2020-02-25 15:46:08 +00:00
|
|
|
default: false
|
2020-05-21 15:33:05 +00:00
|
|
|
debug:
|
|
|
|
description: 'enable debug message'
|
|
|
|
default: false
|
2019-09-28 04:26:40 +00:00
|
|
|
strip_components:
|
|
|
|
description: 'remove the specified number of leading path elements'
|
2019-09-28 04:39:28 +00:00
|
|
|
default: 0
|
2019-09-28 17:42:21 +00:00
|
|
|
overwrite:
|
|
|
|
description: 'use `--overwrite` flag with tar'
|
|
|
|
default: false
|
|
|
|
tar_tmp_path:
|
|
|
|
description: 'temporary path for tar file on the dest host'
|
2020-01-20 15:08:15 +00:00
|
|
|
proxy_host:
|
|
|
|
description: 'ssh proxy remote host'
|
|
|
|
proxy_port:
|
|
|
|
description: 'ssh proxy remote port'
|
|
|
|
default: 22
|
|
|
|
proxy_username:
|
|
|
|
description: 'ssh proxy username'
|
|
|
|
proxy_password:
|
|
|
|
description: 'ssh proxy password'
|
|
|
|
proxy_passphrase:
|
|
|
|
description: 'ssh proxy key passphrase'
|
|
|
|
proxy_timeout:
|
|
|
|
description: 'timeout for ssh to proxy host'
|
|
|
|
default: "30s"
|
|
|
|
proxy_key:
|
|
|
|
description: 'content of ssh proxy private key. ex raw content of ~/.ssh/id_rsa'
|
|
|
|
proxy_key_path:
|
|
|
|
description: 'path of ssh proxy private key'
|
2020-05-22 01:44:56 +00:00
|
|
|
proxy_fingerprint:
|
|
|
|
description: 'fingerprint SHA256 of the host public key, default is to skip verification'
|
2020-05-24 06:24:45 +00:00
|
|
|
proxy_use_insecure_cipher:
|
|
|
|
description: 'include more ciphers with use_insecure_cipher'
|
|
|
|
default: false
|
2019-09-28 02:42:13 +00:00
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
|
|
|
|
branding:
|
|
|
|
icon: 'copy'
|
|
|
|
color: 'gray-dark'
|