Merge branch 'fix_ssh' into 'master'

Add newline in ssh_config

See merge request fdroid/fdroidserver!1039
This commit is contained in:
Hans-Christoph Steiner 2021-11-04 09:29:27 +00:00
commit 5aa12ea50a

View file

@ -16,5 +16,5 @@ echo "export DEBIAN_FRONTEND=noninteractive" >> $bsenv
chmod 0644 $bsenv chmod 0644 $bsenv
# make sure that SSH never hangs at a password or key prompt # make sure that SSH never hangs at a password or key prompt
printf ' StrictHostKeyChecking yes' >> /etc/ssh/ssh_config printf ' StrictHostKeyChecking yes\n' >> /etc/ssh/ssh_config
printf ' BatchMode yes' >> /etc/ssh/ssh_config printf ' BatchMode yes\n' >> /etc/ssh/ssh_config