From d4d882e5cefb6b16d84e651a00a9e98914d54bd6 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 17 Sep 2012 19:11:48 +0200 Subject: [PATCH] logind: make VT reservation logic compatible with containers --- src/login/logind.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/login/logind.c b/src/login/logind.c index f72eb490f..3f71f5b4a 100644 --- a/src/login/logind.c +++ b/src/login/logind.c @@ -1006,7 +1006,10 @@ static int manager_reserve_vt(Manager *m) { m->reserve_vt_fd = open(p, O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK); if (m->reserve_vt_fd < 0) { - log_warning("Failed to pin reserved VT: %m"); + + /* Don't complain on VT-less systems */ + if (errno != ENOENT) + log_warning("Failed to pin reserved VT: %m"); return -errno; } -- 2.30.2