From 277f2326578aa8b444e0a1d750412d9eaed3b0b8 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 14 Aug 2021 15:00:43 +0200 Subject: Fixed borg server account for Alpine Linux The locked account set a password as '!' which prevents login with ssh keys on only Alpine Linux. Setting the hashed password to '*' still prevents ssh login with passwords but no longer blocks ssh keys. --- tasks/server.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/server.yml b/tasks/server.yml index c166dcf..78754a2 100644 --- a/tasks/server.yml +++ b/tasks/server.yml @@ -12,7 +12,7 @@ home: /srv/borg createhome: yes system: yes - password_lock: yes + password: '*' - name: Ensure borg directories exist on server file: -- cgit v1.2.3