diff options
author | Andy Wingo <wingo@pobox.com> | 2015-09-01 11:54:25 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2015-09-01 11:54:25 +0200 |
commit | c8e9d44726ae4ad6ceafe5b7eda11e876541d6aa (patch) | |
tree | 1a69f4896f827c1c3ae32ee16db5c91c8ebeb650 | |
parent | 4ec545de7c4ab2dbbbd93d1c873a29b9a71b9188 (diff) |
Fix the login monitor
* src/login/logind.c (main): Create /run/systemd/machines, so that the
login monitor works.
* configure.ac: v219.10.
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/login/logind.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0414e62468..5871ace529 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 4cd320d8c1..bc611df8e3 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) { |