summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
Diffstat (limited to 'src/login')
-rw-r--r--src/login/logind.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/login/logind.c b/src/login/logind.c
index f72eb490fe..3f71f5b4a9 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;
}