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

Lennart Poettering lennart at kemper.freedesktop.org
Fri Oct 4 08:06:06 PDT 2013


 TODO                    |    6 +++---
 src/core/dbus-manager.c |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit a316932f5a627c1ef78f568fd5dfa579f12e76b2
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Oct 4 17:01:37 2013 +0200

    manager: when verifying whether clients may change environment using selinux check for "reload" rather "reboot"
    
    This appears to be a copy/paste error.

diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c
index 676a07f..8f4d017 100644
--- a/src/core/dbus-manager.c
+++ b/src/core/dbus-manager.c
@@ -1397,7 +1397,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
                 _cleanup_strv_free_ char **l = NULL;
                 char **e = NULL;
 
-                SELINUX_ACCESS_CHECK(connection, message, "reboot");
+                SELINUX_ACCESS_CHECK(connection, message, "reload");
 
                 r = bus_parse_strv(message, &l);
                 if (r == -ENOMEM)
@@ -1424,7 +1424,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
                 _cleanup_strv_free_ char **l = NULL;
                 char **e = NULL;
 
-                SELINUX_ACCESS_CHECK(connection, message, "reboot");
+                SELINUX_ACCESS_CHECK(connection, message, "reload");
 
                 r = bus_parse_strv(message, &l);
                 if (r == -ENOMEM)
@@ -1452,7 +1452,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
                 char **f = NULL;
                 DBusMessageIter iter;
 
-                SELINUX_ACCESS_CHECK(connection, message, "reboot");
+                SELINUX_ACCESS_CHECK(connection, message, "reload");
 
                 if (!dbus_message_iter_init(message, &iter))
                         goto oom;

commit 7f79cd7109a60810140a045cc725291fc5515264
Author: Lennart Poettering <lennart at poettering.net>
Date:   Fri Oct 4 17:01:32 2013 +0200

    update TODO

diff --git a/TODO b/TODO
index 425f673..6764919 100644
--- a/TODO
+++ b/TODO
@@ -50,17 +50,17 @@ CGroup Rework Completion:
 
 * introduce high-level settings for RT budget, swappiness
 
-* wiki: guidelines how to make use of new cgroup apis
-
 Features:
 
+* tmpfiles: when applying ownership to /run/log/journal also do this for the journal fails contained in it
+
 * we probably should replace the left-over uses of strv_append() and replace them by strv_push() or strv_extend()
 
 * move config_parse_path_strv() out of conf-parser.c
 
 * libdsystemd-bus should expose utf8 validation calls
 
-* After coming back from hibernation reset hibernation swap partition
+* After coming back from hibernation reset hibernation swap partition using the /dev/snapshot ioctl APIs
 
 * If we try to find a unit via a dangling symlink generate a clean
   error. Currently we just ignore it and read the unit from the search



More information about the systemd-commits mailing list