From c8e9d44726ae4ad6ceafe5b7eda11e876541d6aa Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 1 Sep 2015 11:54:25 +0200 Subject: [PATCH] Fix the login monitor * src/login/logind.c (main): Create /run/systemd/machines, so that the login monitor works. * configure.ac: v219.10. --- configure.ac | 2 +- src/login/logind.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0414e6246..5871ace52 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_PREREQ([2.64]) # FIXME: Update to proper web page AC_INIT([elogind], - [219.9], + [219.10], [http://bugs.freedesktop.org/enter_bug.cgi?product=elogind], [elogind], [http://www.freedesktop.org/wiki/Software/elogind]) diff --git a/src/login/logind.c b/src/login/logind.c index 4cd320d8c..bc611df8e 100644 --- a/src/login/logind.c +++ b/src/login/logind.c @@ -1045,6 +1045,7 @@ int main(int argc, char *argv[]) { mkdir_label("/run/systemd/seats", 0755); mkdir_label("/run/systemd/users", 0755); mkdir_label("/run/systemd/sessions", 0755); + mkdir_label("/run/systemd/machines", 0755); m = manager_new(); if (!m) { -- 2.30.2