1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

fix(rsync-backup): Provide default port 22 for rsync usage in backup.py

This commit is contained in:
Hugh Secker-Walker 2023-01-24 22:05:48 +00:00
parent 5e3e4a2161
commit e475e69f2b

View File

@ -221,7 +221,9 @@ def get_duplicity_additional_args(env):
port = urlsplit(config["target"]).port
except ValueError:
port = 22
if port is None:
port = 22
return [
f"--ssh-options= -i /root/.ssh/id_rsa_miab -p {port}",
f"--rsync-options= -e \"/usr/bin/ssh -oStrictHostKeyChecking=no -oBatchMode=yes -p {port} -i /root/.ssh/id_rsa_miab\"",
@ -424,6 +426,8 @@ def list_target_files(config):
port = target.port
except ValueError:
port = 22
if port is None:
port = 22
target_path = target.path
if not target_path.endswith('/'):