summaryrefslogtreecommitdiff
path: root/TODO
AgeCommit message (Collapse)Author
2013-04-24test: make it easier to override kernel versionZbigniew Jędrzejewski-Szmek
2013-04-23timer: make sure we restart timers even if units are still running or if one ↵Lennart Poettering
of their conditions fails
2013-04-23update TODOLennart Poettering
2013-04-22cgroup: make sure all our cgroup objects have a suffix and are properly escapedLennart Poettering
Session objects will now get the .session suffix, user objects the .user suffix, nspawn containers the .nspawn suffix. This also changes the user cgroups to be named after the numeric UID rather than the username, since this allows us the parse these paths standalone without requiring access to the cgroup file system. This also changes the mapping of instanced units to cgroups. Instead of mapping foo@bar.service to the cgroup path /user/foo@.service/bar we will now map it to /user/foo@.service/foo@bar.service, in order to ensure that all our objects are properly suffixed in the tree.
2013-04-22update TODOLennart Poettering
2013-04-21systemd,nspawn: use extended attributes to store metadataZbigniew Jędrzejewski-Szmek
All attributes are stored as text, since root_directory is already text, and it seems easier to have all of them in text format. Attributes are written in the trusted. namespace, because the kernel currently does not allow user. attributes on cgroups. This is a PITA, and CAP_SYS_ADMIN is required to *read* the attributes. Alas. A second pipe is opened for the child to signal the parent that the cgroup hierarchy has been set up.
2013-04-20TODO: remove dbus items which we will not touch anymoreKay Sievers
2013-04-20TODO: journal enhancementsJosh Triplett
2013-04-19build-sys: prepare release 202Lennart Poettering
2013-04-18journal: when iterating through a file we might lose messages when changing ↵Marius Vollmer
direction. https://bugs.freedesktop.org/show_bug.cgi?id=63672
2013-04-18update TODOLennart Poettering
2013-04-18update TODOLennart Poettering
2013-04-17update TODOLennart Poettering
2013-04-17update TODOLennart Poettering
2013-04-17update TODOLennart Poettering
2013-04-17TODO: add s.th. like "systemctl set-log-level debug"Harald Hoyer
2013-04-17TODO: remove fixed systemctl property bugHarald Hoyer
2013-04-17timedated: fixed NTP enabled: n/aHarald Hoyer
2013-04-16bus: parse unit/user unit/session from cgroup pathLennart Poettering
2013-04-16update TODOLennart Poettering
2013-04-15update TODOLennart Poettering
2013-04-14TODO: bootchart items.Auke Kok
2013-04-11update TODOLennart Poettering
2013-04-11TODO: updateKay Sievers
2013-04-10shell-completion: show failed units as candidates for startZbigniew Jędrzejewski-Szmek
Also show disabled units as candidates for reenable, since it works and one may want to do enable-or-reenable in one line.
2013-04-09update TODOLennart Poettering
2013-04-08update TODOLennart Poettering
2013-04-08TODO: updateKay Sievers
2013-04-08update TODOLennart Poettering
2013-04-05update TODOLennart Poettering
2013-04-04update TODOLennart Poettering
2013-04-03update TODOLennart Poettering
2013-04-02update TODOLennart Poettering
2013-04-02update TODOLennart Poettering
2013-04-01cryptsetup: RequiresMountsFor if source is a fileThomas Weißschuh
Fixes: https://bugzilla.novell.com/show_bug.cgi?id=730496 https://bugs.freedesktop.org/show_bug.cgi?id=60821
2013-04-01Add AllowIsolate=yes to snapshotsOleksii Shevchuk
2013-03-31units/user: default.target must be isolatableZbigniew Jędrzejewski-Szmek
... Activating default unit: default.target Default target could not be isolated, starting instead: Operation refused, unit may not be isolated.
2013-03-30TODOLennart Poettering
2013-03-30TODO: updateKay Sievers
2013-03-29update TODOLennart Poettering
2013-03-28journalctl: support --root for message catalogsZbigniew Jędrzejewski-Szmek
2013-03-26build-sys: bump version and .so revisionsLennart Poettering
2013-03-25man: rearrange systemd.special(7) to clarify which units are passive and ↵Lennart Poettering
which ones aren't This also adds a short explanation paragraph for this.
2013-03-25update TODOLennart Poettering
2013-03-25update TODOLennart Poettering
2013-03-25fstab-generator: rename x-initrd-rootfs.mount to x-initrd.rootfsLennart Poettering
This changes the fstab mount option x-initrd-rootfs.mount to x-initrd.rootfs, in order to only use a single namespace "x-initrd." for all mount options of the initrd.
2013-03-25update TODOLennart Poettering
2013-03-25update TODOLennart Poettering
2013-03-23journald: remove unconditional log_*() use in the main loopKay Sievers
Setting MaxRetentionSec= caused the kernel log to overflow and the journal daemon to enter an endless loop. Logging from the journald main loop gets directed to /dev/kmsg, which wakes up journald again. We skip the import of this message by checking for our own PID, but this still causes the main loop to never go to sleep again because we never stopped logging from there.
2013-03-23TODO: add journal MaxRetentionSec= bugKay Sievers