From 98c482d7903d059a6598a6e7280f0e7b431eac29 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 27 Feb 2021 11:28:36 +0200 Subject: feat: make ssh/config never use passwords, only use specified key --- ssh/config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ssh/config b/ssh/config index eb1be72..b4cbdec 100644 --- a/ssh/config +++ b/ssh/config @@ -1,4 +1,6 @@ host * userknownhostsfile=/dev/null stricthostkeychecking=accept-new - identityfile=ssh/test.key \ No newline at end of file + identityfile=ssh/test.key + identitiesonly=yes + passwordauthentication=no -- cgit v1.2.1