logind: Ensure the user, seat and session files are updated when the session is closing.

This commit is contained in:
Colin Guthrie 2012-09-04 01:37:27 +01:00 committed by Lennart Poettering
parent 2dc8f41a2b
commit 23bd3b6263
1 changed files with 5 additions and 0 deletions

View File

@ -714,9 +714,11 @@ int session_stop(Session *s) {
seat_set_active(s->seat, NULL);
seat_send_changed(s->seat, "Sessions\0");
seat_save(s->seat);
}
user_send_changed(s->user, "Sessions\0");
user_save(s->user);
s->started = false;
@ -870,6 +872,9 @@ void session_remove_fifo(Session *s) {
assert_se(epoll_ctl(s->manager->epoll_fd, EPOLL_CTL_DEL, s->fifo_fd, NULL) == 0);
close_nointr_nofail(s->fifo_fd);
s->fifo_fd = -1;
session_save(s);
user_save(s->user);
}
if (s->fifo_path) {