loginui: Can't log in to a non-privileged user session after logging in to a different user #47
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: apio/Luna#47
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Steps to reproduce:
Instead of logging in, the log in screen resets after a short wait.
After analyzing the logs, it seems like the required per-user services (like /usr/bin/launch) try to create their socket file, but as it already exists, they try to delete it. However, the socket files are owned by a different user.
To fix this, either the socket files should be deleted by the services on exit, or deleted by startui, who has root access. The first solution will still cause problems if a service crashes or is killed by SIGKILL, but could be implemented as a partial solution.