diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2022-05-26 08:10:01 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2022-05-26 08:22:03 +0300 |
commit | 1f29ed4a812f86c45e2d9c37fd9f80f6d0418293 (patch) | |
tree | c86a364530d41649f1d6d91795d67a3bb1be4625 | |
parent | b015a15c5736758c8c94be971a7d0b3c256462b9 (diff) | |
download | guix-1f29ed4a812f86c45e2d9c37fd9f80f6d0418293.tar.gz guix-1f29ed4a812f86c45e2d9c37fd9f80f6d0418293.zip |
services: ssh: Fix extend-openssh-authorized-keys.
Fixes #55359.
* gnu/services/ssh.scm (extend-openssh-authorized-keys): Use KEYS argument.
-rw-r--r-- | gnu/services/ssh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index be5d029374..95646ac033 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -571,7 +571,7 @@ of user-name/file-like tuples." (openssh-configuration (inherit config) (authorized-keys - (match (openssh-configuration-authorized-keys config) + (match (append (openssh-configuration-authorized-keys config) keys) (((users _ ...) ...) ;; Build a user/key-list mapping. (let ((user-keys (alist->vhash |