From ae9a1df1aabce15df5a1200994799729f4065c38 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Sat, 30 Oct 2021 20:59:56 +0200 Subject: [PATCH] Add newline in ssh_config Otherwise both options end on the same line and are not used. --- buildserver/setup-env-vars | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildserver/setup-env-vars b/buildserver/setup-env-vars index 5fed9e8f..a4d96781 100644 --- a/buildserver/setup-env-vars +++ b/buildserver/setup-env-vars @@ -16,5 +16,5 @@ echo "export DEBIAN_FRONTEND=noninteractive" >> $bsenv chmod 0644 $bsenv # make sure that SSH never hangs at a password or key prompt -printf ' StrictHostKeyChecking yes' >> /etc/ssh/ssh_config -printf ' BatchMode yes' >> /etc/ssh/ssh_config +printf ' StrictHostKeyChecking yes\n' >> /etc/ssh/ssh_config +printf ' BatchMode yes\n' >> /etc/ssh/ssh_config