mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-02 09:47:03 +03:00
bus: we really need to get rid of the :no-sender hack
This is where a hack from PID 1 spilled into the client side. We need to get rid of this as soon as PID 1 is converted to libsystemd-bus.
This commit is contained in:
parent
369c583b3f
commit
60411ac750
6
TODO
6
TODO
@ -1,6 +1,4 @@
|
||||
Bugfixes:
|
||||
* check :no-sender logic after PID conversion
|
||||
|
||||
* enabling an instance unit creates a pointless link, and
|
||||
the unit will be started with getty@getty.service:
|
||||
$ systemctl enable getty@.service
|
||||
@ -35,8 +33,6 @@ Fedora 20:
|
||||
|
||||
CGroup Rework Completion:
|
||||
|
||||
* introduce "mainpid" for scopes (or maybe not?)
|
||||
|
||||
* implement system-wide DefaultCPUAccounting=1 switch (and similar for blockio, memory?)
|
||||
|
||||
* implement per-slice CPUFairScheduling=1 switch
|
||||
@ -47,6 +43,8 @@ CGroup Rework Completion:
|
||||
|
||||
Features:
|
||||
|
||||
* check :no-sender logic after PID 1 conversion
|
||||
|
||||
* increase journal files by a few MB each time, instead of piecemeal
|
||||
|
||||
* add field to transient units that indicate whether systemd or somebody else saves/restores its settings, for integration with libvirt
|
||||
|
@ -170,6 +170,7 @@ bool sender_name_is_valid(const char *p) {
|
||||
if (isempty(p))
|
||||
return false;
|
||||
|
||||
/* FIXME: remove after PID 1 bus conversion */
|
||||
if (streq(p, ":no-sender"))
|
||||
return true;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user