1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

Add newline in ssh_config

Otherwise both options end on the same line and are not used.
This commit is contained in:
Jochen Sprickerhof 2021-10-30 20:59:56 +02:00 committed by Hans-Christoph Steiner
parent c26345214f
commit ae9a1df1aa

View File

@ -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