[systemd-commits] 2 commits - TODO src/journal units/systemd-readahead-collect.service.in

Lennart Poettering lennart at kemper.freedesktop.org
Wed May 23 03:49:57 PDT 2012


 TODO                                       |    4 ++--
 src/journal/journald.c                     |    4 ++--
 units/systemd-readahead-collect.service.in |    4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 659635ab22a2dc43e3ffec9b60cacc242fd02f52
Author: Lennart Poettering <lennart at poettering.net>
Date:   Wed May 23 12:49:49 2012 +0200

    units: fix file syntax

diff --git a/units/systemd-readahead-collect.service.in b/units/systemd-readahead-collect.service.in
index 6ad286b..55b6776 100644
--- a/units/systemd-readahead-collect.service.in
+++ b/units/systemd-readahead-collect.service.in
@@ -11,8 +11,8 @@ DefaultDependencies=no
 Wants=systemd-readahead-done.timer
 Conflicts=shutdown.target
 Before=sysinit.target shutdown.target
-ConditionFileExists=!/run/systemd/readahead/cancel
-ConditionFileExists=!/run/systemd/readahead/done
+ConditionPathExists=!/run/systemd/readahead/cancel
+ConditionPathExists=!/run/systemd/readahead/done
 ConditionVirtualization=no
 
 [Service]

commit 1afd5be42f8f4105dd47c71ce968c9d5bf81e0a8
Author: Lennart Poettering <lennart at poettering.net>
Date:   Wed May 23 12:49:41 2012 +0200

    journal: don't complain if SELinux userspace is available but the kernel lacks it

diff --git a/TODO b/TODO
index b3b8f40..a0be14d 100644
--- a/TODO
+++ b/TODO
@@ -23,6 +23,8 @@ Bugfixes:
 
 Features:
 
+* For Type=idle don't get confused by ExecStartPre= getting the effect of the idle hup but delaying jobs going away
+
 * drop accountsservice's StandardOutput=syslog and Type=dbus fields
 
 * systemctl status for a unloaded unit is broken (Michal?)
@@ -111,8 +113,6 @@ Features:
 
 * allow configuration of console width/height in vconsole.conf
 
-* fstab should take priority over units in /usr
-
 * cleanup syslog 'priority' vs. 'level' wording
 
 * journal: if mmap() fails for mapping window try to unmap a a few older maps
diff --git a/src/journal/journald.c b/src/journal/journald.c
index c429896..7776c2a 100644
--- a/src/journal/journald.c
+++ b/src/journal/journald.c
@@ -1692,8 +1692,8 @@ static int stdout_stream_new(Server *s) {
         }
 
 #ifdef HAVE_SELINUX
-        if (getpeercon(fd, &stream->security_context) < 0)
-                log_error("Failed to determine peer security context.");
+        if (getpeercon(fd, &stream->security_context) < 0 && errno != ENOPROTOOPT)
+                log_error("Failed to determine peer security context: %m");
 #endif
 
         if (shutdown(fd, SHUT_WR) < 0) {



More information about the systemd-commits mailing list