From 8bada13aa4859807ebfbdb218ddd7c56b33906c9 Mon Sep 17 00:00:00 2001 From: schneefux Date: Tue, 24 Dec 2024 12:28:32 +0100 Subject: [PATCH] infra: Update upgrade script --- deployment/upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/upgrade.sh b/deployment/upgrade.sh index 31c9dbd1..13152b07 100755 --- a/deployment/upgrade.sh +++ b/deployment/upgrade.sh @@ -1,5 +1,5 @@ #!/bin/sh for IP in "$@"; do - ssh -i ~/.ssh/brawltime.key "root@$IP" "apt-get update && apt-get upgrade -y" + ssh -o "StrictHostKeyChecking no" -i ~/.ssh/brawltime.key "root@$IP" "apt-get update && apt-get upgrade -y" done