[systemd-commits] 2 commits - TODO src/tmpfiles

Lennart Poettering lennart at kemper.freedesktop.org
Fri Jul 20 08:18:34 PDT 2012


 TODO                    |    8 ++++++++
 src/tmpfiles/tmpfiles.c |    3 +++
 2 files changed, 11 insertions(+)

New commits:
commit 6a7353684b65f0107cbdfa0a16ab7717ba257b61
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Jul 20 16:55:34 2012 +0200

    update TODO

diff --git a/TODO b/TODO
index 748987f..2d25243 100644
--- a/TODO
+++ b/TODO
@@ -34,6 +34,14 @@ Bugfixes:
 
 Features:
 
+* append ".service" to unit names without any suffix (https://bugs.freedesktop.org/show_bug.cgi?id=39386)
+
+* journalctl: add --priority switch
+
+* journalctl highlight lines based on priorities
+
+* systemctl: "Journal has been rotated since unit was started." message is misleading
+
 * syscall filter: add knowledge about compat syscalls
 
 * syscall filter: don't enforce no new privs?

commit 3f2afb29140c1caa97901e5e1cd38865afb19d6e
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Jul 20 16:24:55 2012 +0200

    tmpfiles: also look in /lib/tmpfiles.d on split /usr systems
    
    https://bugs.freedesktop.org/show_bug.cgi?id=38686
    
    I don't think the usecase case in that bug makes much sense, but all the
    other tools do honour /lib in the search path so we probably should do
    that here, too.

diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index 7a453dc..45125b7 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -107,6 +107,9 @@ static const char * const conf_file_dirs[] = {
         "/run/tmpfiles.d",
         "/usr/local/lib/tmpfiles.d",
         "/usr/lib/tmpfiles.d",
+#ifdef HAVE_SPLIT_USR
+        "/lib/tmpfiles.d",
+#endif
         NULL
 };
 



More information about the systemd-commits mailing list