I just installed Obarun on my laptop. Have got most things working. Somehow, I am having issues with GNOME keyring. I use LightDM to login and want to automatically unlock my keyring when login. I have set up everything I know from Arch Wiki. Have done this numerous times on Arch with success. Is there something special I need to do on Obarun in order to make this work?
/etc/pam.d » cat passwd                                                                                                                                
# %PAM-1.0
# password       required        pam_cracklib.so difok=2 minlen=8 dcredit=2 ocredit=2 retry=3
# password       required        pam_unix.so sha512 shadow use_authtok
password        required        pam_unix.so sha512 shadow nullok
password        optional        pam_gnome_keyring.so

/etc/pam.d » cat login                                                                                                                                 
# %PAM-1.0

auth       required     pam_securetty.so
auth       requisite    pam_nologin.so
auth       include      system-local-login
auth       optional     pam_gnome_keyring.so
account    include      system-local-login
session    include      system-local-login
session    optional     pam_gnome_keyring.so auto_start

/etc/lightdm/lightdm.conf:
[Seat:*]
# type=local
pam-service=lightdm

/etc/pam.d » cat lightdm                                                                                                                               
# %PAM-1.0
auth        include     system-login
auth        optional    pam_gnome_keyring.so
account     include     system-login
password    include     system-login
session     include     system-login
session     optional    pam_gnome_keyring.so auto_start
Galeano wrote and they are all systemd services.
nope, these are "dbus services" , independent of systemd (although sometimes they can reference a systemd service file)
eg. the contents of /usr/share/org.freedesktop.secrets.service
[D-BUS Service]
Name=org.freedesktop.secrets
Exec=/usr/bin/gnome-keyring-daemon --start --foreground --components=secrets
much like the /etc/xdg/autostart/gnome-keyring-secrets.desktop , with a slightly different Exec line

and just for an example of "sometimes they can reference a systemd service file" :
/usr/share/dbus-1/services/org.freedesktop.portal.Tracker.service
[D-BUS Service]
Name=org.freedesktop.portal.Tracker
Exec=/usr/lib/tracker-xdg-portal-3
SystemdService=tracker-xdg-portal-3.service
more likely something to do with dbus ..

Powered by Obarun