unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#47610: gnome-keyring service doesn't appear
@ 2021-04-06  4:38 bdju via Bug reports for GNU Guix
  2021-04-06  6:55 ` Leo Prikler
  0 siblings, 1 reply; 6+ messages in thread
From: bdju via Bug reports for GNU Guix @ 2021-04-06  4:38 UTC (permalink / raw)
  To: 47610

guix (GNU Guix) 04ba7a196ab23539f1c7897ca5349fa635c5e88d
I am on Guix System.
Gajim told me I needed a keyring to save my password, so I installed
gnome-keyring in my user's manifest. I then also added its service to my
config.scm and did a reconfigure. After all that, I did a `sudo herd
status` and gnome-keyring was not in the list anywhere.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#47610: gnome-keyring service doesn't appear
  2021-04-06  4:38 bug#47610: gnome-keyring service doesn't appear bdju via Bug reports for GNU Guix
@ 2021-04-06  6:55 ` Leo Prikler
  2021-04-21  6:49   ` bdju via Bug reports for GNU Guix
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Prikler @ 2021-04-06  6:55 UTC (permalink / raw)
  To: bdju; +Cc: 47610

gnome-keyring-service is not a shepherd service.  It is a pam service,
that ensures your login keyring (if it exists) is unlocked when you log
in.  That's all it does.

`ps x | grep gnome-keyring` should have a non-empty output.  Mine
includes this:
/gnu/store/47nl5kpkc3sgwasrbk06sgaig22w07ha-gnome-keyring-
3.34.0/bin/gnome-keyring-daemon --daemonize --login

Regards,
Leo





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#47610: gnome-keyring service doesn't appear
  2021-04-06  6:55 ` Leo Prikler
@ 2021-04-21  6:49   ` bdju via Bug reports for GNU Guix
  2021-04-21  7:30     ` Leo Prikler
  0 siblings, 1 reply; 6+ messages in thread
From: bdju via Bug reports for GNU Guix @ 2021-04-21  6:49 UTC (permalink / raw)
  To: Leo Prikler; +Cc: 47610

On Tue Apr 6, 2021 at 1:55 AM CDT, Leo Prikler wrote:
> gnome-keyring-service is not a shepherd service. It is a pam service,
> that ensures your login keyring (if it exists) is unlocked when you log
> in. That's all it does.
>
> `ps x | grep gnome-keyring` should have a non-empty output. Mine
> includes this:
> /gnu/store/47nl5kpkc3sgwasrbk06sgaig22w07ha-gnome-keyring-
> 3.34.0/bin/gnome-keyring-daemon --daemonize --login
>
> Regards,
> Leo
The only output I get back from that is the very grep I'm running. I
didn't have gnome-keyring in my manifest, so I added it. Then I
rebooted. Still nothing. I also installed python-keyring.
Someone had me run `keyring --list-backends` which seems to show I have
no working keyring backends. I haven't messed with keyrings before, so
maybe I'm just doing something wrong here.

(output of above command)
```
keyring.backends.fail.Keyring (priority: 0)
keyring.backends.chainer.ChainerBackend (priority: -1)
```





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#47610: gnome-keyring service doesn't appear
  2021-04-21  6:49   ` bdju via Bug reports for GNU Guix
@ 2021-04-21  7:30     ` Leo Prikler
  2021-04-21  7:35       ` bdju via Bug reports for GNU Guix
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Prikler @ 2021-04-21  7:30 UTC (permalink / raw)
  To: bdju; +Cc: 47610

Am Mittwoch, den 21.04.2021, 01:49 -0500 schrieb bdju:
> On Tue Apr 6, 2021 at 1:55 AM CDT, Leo Prikler wrote:
> > gnome-keyring-service is not a shepherd service. It is a pam
> > service,
> > that ensures your login keyring (if it exists) is unlocked when you
> > log
> > in. That's all it does.
> > 
> > `ps x | grep gnome-keyring` should have a non-empty output. Mine
> > includes this:
> > /gnu/store/47nl5kpkc3sgwasrbk06sgaig22w07ha-gnome-keyring-
> > 3.34.0/bin/gnome-keyring-daemon --daemonize --login
> > 
> > Regards,
> > Leo
> The only output I get back from that is the very grep I'm running. I
> didn't have gnome-keyring in my manifest, so I added it. Then I
> rebooted. Still nothing. I also installed python-keyring.
> Someone had me run `keyring --list-backends` which seems to show I
> have
> no working keyring backends. I haven't messed with keyrings before,
> so
> maybe I'm just doing something wrong here.
> 
> (output of above command)
> ```
> keyring.backends.fail.Keyring (priority: 0)
> keyring.backends.chainer.ChainerBackend (priority: -1)
> ```
That's quite an interesting observation.  Could you tell me what DM
(gdm, sddm, sway) you're using?

The gnome-keyring PAM service works by adding an auto_start login
entry, that refers to gnome-keyring's
/lib/security/pam_gnome_keyring.so.  I don't think you need GNOME
keyring installed for that to run, but the default configuration
assumes you're running GDM.  You will need to adjust it if you use
something else.

Regards,
Leo





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#47610: gnome-keyring service doesn't appear
  2021-04-21  7:30     ` Leo Prikler
@ 2021-04-21  7:35       ` bdju via Bug reports for GNU Guix
  2021-04-21  8:05         ` Leo Prikler
  0 siblings, 1 reply; 6+ messages in thread
From: bdju via Bug reports for GNU Guix @ 2021-04-21  7:35 UTC (permalink / raw)
  To: Leo Prikler; +Cc: 47610

On Wed Apr 21, 2021 at 2:30 AM CDT, Leo Prikler wrote:
> That's quite an interesting observation. Could you tell me what DM
> (gdm, sddm, sway) you're using?
>
> The gnome-keyring PAM service works by adding an auto_start login
> entry, that refers to gnome-keyring's
> /lib/security/pam_gnome_keyring.so. I don't think you need GNOME
> keyring installed for that to run, but the default configuration
> assumes you're running GDM. You will need to adjust it if you use
> something else.
>
> Regards,
> Leo
I'm using sway, I launch it with `exec sway` from a tty.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#47610: gnome-keyring service doesn't appear
  2021-04-21  7:35       ` bdju via Bug reports for GNU Guix
@ 2021-04-21  8:05         ` Leo Prikler
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Prikler @ 2021-04-21  8:05 UTC (permalink / raw)
  To: bdju; +Cc: 47610

Am Mittwoch, den 21.04.2021, 02:35 -0500 schrieb bdju:
> On Wed Apr 21, 2021 at 2:30 AM CDT, Leo Prikler wrote:
> > That's quite an interesting observation. Could you tell me what DM
> > (gdm, sddm, sway) you're using?
👆 idiot thinking sway is a DM and not a WM.
> > 
> > The gnome-keyring PAM service works by adding an auto_start login
> > entry, that refers to gnome-keyring's
> > /lib/security/pam_gnome_keyring.so. I don't think you need GNOME
> > keyring installed for that to run, but the default configuration
> > assumes you're running GDM. You will need to adjust it if you use
> > something else.
> > 
> > Regards,
> > Leo
> I'm using sway, I launch it with `exec sway` from a tty.
Since you manually exec sway, you can either configure gnome-keyring-
service, so that it always runs on login (be aware, that I haven't
checked that configuration and it might lock you out forever, so use
rollbacks if that happens), or try to start the keyring manually or
from sway.





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-04-21  8:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-06  4:38 bug#47610: gnome-keyring service doesn't appear bdju via Bug reports for GNU Guix
2021-04-06  6:55 ` Leo Prikler
2021-04-21  6:49   ` bdju via Bug reports for GNU Guix
2021-04-21  7:30     ` Leo Prikler
2021-04-21  7:35       ` bdju via Bug reports for GNU Guix
2021-04-21  8:05         ` Leo Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).