remove identity file

This commit is contained in:
Mathieu Broillet 2023-06-14 14:45:23 +02:00
parent 4cb9752c23
commit 360d1f6b7e
No known key found for this signature in database
GPG Key ID: 7D4F25BC50A0AA32

View File

@ -177,7 +177,7 @@ def run_command_on_pve(command: str, return_status_code: bool = False, exception
logging.debug(f"Running command on PVE (ssh): {command}") logging.debug(f"Running command on PVE (ssh): {command}")
# catch errors code # catch errors code
command = subprocess.run(f'ssh -i {get_identity_file()} {username}@{host} -p {port} "{command}"', shell=shell, capture_output=True, command = subprocess.run(f'ssh {username}@{host} -p {port} "{command}"', shell=shell, capture_output=True,
encoding="utf-8") encoding="utf-8")
# If return code is not 0 and that exception_on_exit is True and return_status_code is False, throw an exception # If return code is not 0 and that exception_on_exit is True and return_status_code is False, throw an exception
@ -414,7 +414,7 @@ def copy_file_to_pve(path: Path, destination: str):
config = get_config() config = get_config()
# copy the file to the PVE from the local machine # copy the file to the PVE from the local machine
run_command_locally(command=f"scp -i {get_identity_file()} {str(path)} {config['pve']['user']}@{config['pve']['host']}:{destination}", run_command_locally(command=f"scp {str(path)} {config['pve']['user']}@{config['pve']['host']}:{destination}",
return_status_code=True) return_status_code=True)