diff options
author | Runciter | 2024-12-13 14:01:33 +0800 |
---|---|---|
committer | Runciter | 2024-12-13 14:04:26 +0800 |
commit | d7c25399b7feb8610254140bd14cb67d16146acd (patch) | |
tree | 704d618b7e98feb85df21ca877f51b86e769303e /whispers/services | |
parent | 6b14b7e3bc4c20001b90e8109a62224396c6d457 (diff) | |
download | whispers-d7c25399b7feb8610254140bd14cb67d16146acd.tar.gz |
Remove call to old action procedure.
M whispers/services/ssh-agent.scm
Replace leftover call to action procedure by perform-service-action
Diffstat (limited to 'whispers/services')
-rw-r--r-- | whispers/services/ssh-agent.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/whispers/services/ssh-agent.scm b/whispers/services/ssh-agent.scm index 834b36a..6b527a1 100644 --- a/whispers/services/ssh-agent.scm +++ b/whispers/services/ssh-agent.scm @@ -109,7 +109,9 @@ agent daemon, configurable by CONFIG, a record of the #:log-file #$log-file-path)))) (map (lambda (key) - (action 'ssh-agent 'add-key key)) + (perform-service-action (lookup-service 'ssh-agent) + 'add-key + key)) '#$auto-added-keys) ret)))) |