From 51d555ec83f35d4580d830d34a3ff863d028cd08 Mon Sep 17 00:00:00 2001 From: "sebastian.serfling" Date: Mon, 16 Mar 2026 13:52:43 +0000 Subject: [PATCH] restore.sh aktualisiert -e "ssh -o StrictHostKeyChecking=no" \ geaddet --- restore.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/restore.sh b/restore.sh index 00b8cbe..f5e303a 100644 --- a/restore.sh +++ b/restore.sh @@ -204,6 +204,7 @@ if [[ -f "$KEYFILE_LOCAL" && -s "$KEYFILE_LOCAL" ]]; then else echo " Hole Keyfile: root@${PBS_HOST}:/root/Scripte/${DATASTORE}.keyfile" rsync -az \ + -e "ssh -o StrictHostKeyChecking=no" \ "root@${PBS_HOST}:/root/Scripte/${DATASTORE}.keyfile" \ "$KEYFILE_LOCAL" \ 2>&1 @@ -221,6 +222,7 @@ PW_FILE_LOCAL="${KEY_DIR}/password_7z.txt" if [[ ! -f "$PW_FILE_LOCAL" || ! -s "$PW_FILE_LOCAL" ]]; then echo " Hole password_7z.txt: root@${PBS_HOST}:/root/Scripte/password_7z.txt" rsync -az \ + -e "ssh -o StrictHostKeyChecking=no" \ "root@${PBS_HOST}:/root/Scripte/password_7z.txt" \ "$PW_FILE_LOCAL" \ 2>&1