summaryrefslogtreecommitdiff
path: root/src/login/logind-user.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-08-14 02:59:02 +0200
committerLennart Poettering <lennart@poettering.net>2014-08-14 03:00:24 +0200
commite9e74f28d783a052dce7edfa94d7918bb591ba7a (patch)
tree477358326ca14f17299fac0c3c545c74a2e3fdc8 /src/login/logind-user.c
parent8085f163c50d998f3e30a6ddfc72c73d5dc57747 (diff)
logind: add new session type "web" for PAM web clients, such as cockpit
On request of Stef Walter.
Diffstat (limited to 'src/login/logind-user.c')
-rw-r--r--src/login/logind-user.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/src/login/logind-user.c b/src/login/logind-user.c
index fdbccb364..d48eca47f 100644
--- a/src/login/logind-user.c
+++ b/src/login/logind-user.c
@@ -714,7 +714,7 @@ int user_kill(User *u, int signo) {
}
void user_elect_display(User *u) {
- Session *graphical = NULL, *text = NULL, *s;
+ Session *graphical = NULL, *text = NULL, *other = NULL, *s;
assert(u);
@@ -732,22 +732,35 @@ void user_elect_display(User *u) {
if (SESSION_TYPE_IS_GRAPHICAL(s->type))
graphical = s;
- else
+ else if (s->type == SESSION_TTY)
text = s;
+ else
+ other = s;
}
if (graphical &&
(!u->display ||
u->display->class != SESSION_USER ||
u->display->stopping ||
- !SESSION_TYPE_IS_GRAPHICAL(u->display->type)))
+ !SESSION_TYPE_IS_GRAPHICAL(u->display->type))) {
u->display = graphical;
+ return;
+ }
if (text &&
(!u->display ||
u->display->class != SESSION_USER ||
- u->display->stopping))
+ u->display->stopping ||
+ u->display->type != SESSION_TTY)) {
u->display = text;
+ return;
+ }
+
+ if (other &&
+ (!u->display ||
+ u->display->class != SESSION_USER ||
+ u->display->stopping))
+ u->display = other;
}
static const char* const user_state_table[_USER_STATE_MAX] = {