services: ssh: Fix extend-openssh-authorized-keys.
Fixes #55359. * gnu/services/ssh.scm (extend-openssh-authorized-keys): Use KEYS argument.master
parent
b015a15c57
commit
1f29ed4a81
|
@ -571,7 +571,7 @@ of user-name/file-like tuples."
|
||||||
(openssh-configuration
|
(openssh-configuration
|
||||||
(inherit config)
|
(inherit config)
|
||||||
(authorized-keys
|
(authorized-keys
|
||||||
(match (openssh-configuration-authorized-keys config)
|
(match (append (openssh-configuration-authorized-keys config) keys)
|
||||||
(((users _ ...) ...)
|
(((users _ ...) ...)
|
||||||
;; Build a user/key-list mapping.
|
;; Build a user/key-list mapping.
|
||||||
(let ((user-keys (alist->vhash
|
(let ((user-keys (alist->vhash
|
||||||
|
|
Reference in New Issue