Hi All,
Yesterday I updated my system and I got gnome-keyring 1.46,
now it doesn’t remember my SSH keys password anymore.
Looking around I found some related stuff:
Since GNOME 46.0 the SSH functionality is disabled by default in gnome-keyring-daemon builds. It has been moved into
/usr/lib/gcr-ssh-agent
, which is part of gcr. The plan is to completely remove the implementation in gnome-keyring-daemon.
open issue on gnome
Port ssh-agent from gnome-keyring
SSH_AUTH_SOCK went missing from the session
what I see on my system:
$ cat /usr/lib/systemd/user/gcr-ssh-agent.service
[Unit]
Description=GCR ssh-agent wrapper
Requires=gcr-ssh-agent.socket
[Service]
Type=simple
StandardError=journal
Environment=SSH_AUTH_SOCK=%t/gcr/ssh
ExecStart=/usr/lib/gcr-ssh-agent --base-dir %t/gcr
Restart=on-failure
[Install]
Also=gcr-ssh-agent.socket
WantedBy=default.target
$ sudo systemctl status gcr-ssh-agent.service
Unit gcr-ssh-agent.service could not be found.
$ sudo systemctl start gcr-ssh-agent.service
Failed to start gcr-ssh-agent.service: Unit gcr-ssh-agent.service not found.
$ echo $SSH_AUTH_SOCK
/tmp/ssh-XXXXXX9eY631/agent.20519
$ locate gcr-ssh-agent.socket
/etc/systemd/user/sockets.target.wants/gcr-ssh-agent.socket
/usr/lib/systemd/user/gcr-ssh-agent.socket
I’m looking for a workaround at the moment.
Any help is appreciated.