diff --git a/src/utils/proxmox.py b/src/utils/proxmox.py index e139c32..c7f6729 100644 --- a/src/utils/proxmox.py +++ b/src/utils/proxmox.py @@ -225,7 +225,7 @@ class ProxmoxHost(LinuxMachine): if isinstance(destination, Path): destination = str(destination.as_posix()) - self.run_command(f"scp -B -r {source} {lxc.get_ssh_string()}:{destination}") + self.run_command(f"scp -o StrictHostKeyChecking=no -B -r {source} {lxc.get_ssh_string()}:{destination}") def list_dir(self, directory: str or Path, glob_filter: str = '*'): """List the given directory."""