accounts-daemon.service 741 B

1234567891011121314151617181920212223
  1. [Unit]
  2. Description=Accounts Service
  3. # In order to avoid races with identity-providing services like SSSD or
  4. # winbind, we need to ensure that Accounts Service starts after
  5. # nss-user-lookup.target
  6. After=nss-user-lookup.target
  7. Wants=nss-user-lookup.target
  8. [Service]
  9. Type=dbus
  10. BusName=org.freedesktop.Accounts
  11. ExecStart=/usr/lib/accountsservice/accounts-daemon
  12. Environment=GVFS_DISABLE_FUSE=1
  13. Environment=GIO_USE_VFS=local
  14. Environment=GVFS_REMOTE_VOLUME_MONITOR_IGNORE=1
  15. [Install]
  16. # We pull this in by graphical.target instead of waiting for the bus
  17. # activation, to speed things up a little: gdm uses this anyway so it is nice
  18. # if it is already around when gdm wants to use it and doesn't have to wait for
  19. # it.
  20. WantedBy=graphical.target