From: Andy Wingo Date: Tue, 1 Sep 2015 09:54:25 +0000 (+0200) Subject: Fix the login monitor X-Git-Tag: v219.11~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c8e9d44726ae4ad6ceafe5b7eda11e876541d6aa;p=elogind.git Fix the login monitor * src/login/logind.c (main): Create /run/systemd/machines, so that the login monitor works. * configure.ac: v219.10. --- 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) {