FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 36cf0012 authored by L. Bower's avatar L. Bower
Browse files

...and putting it back again

parent 735a2220
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ def process_pre_job_server_download(input_args: dict):
if server_name == "": # means the file is local
data_is_ready = os.path.exists(full_file_path) and tarfile.is_tarfile(full_file_path)
else:
cmd_check_file = ["ssh", "-o", "StrictHostKeyChecking=no", server_name,
cmd_check_file = ["ssh", "-i", config['ServerKey'], "-o", "StrictHostKeyChecking=no", server_name,
f"test -f {full_file_path} && tar -tzf {full_file_path} >/dev/null"]
run_in_shell: bool = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment