summaryrefslogtreecommitdiff
path: root/TODO
Commit message (Collapse)AuthorAgeFilesLines
* logind: use "sleep" as generic term for "suspend", "hibernate", and later on ↵Lennart Poettering2012-05-081-2/+0
| | | | "hybrid suspend"
* update TODOLennart Poettering2012-05-071-0/+2
|
* Update TODOLennart Poettering2012-05-071-0/+6
|
* logind: implement delay inhibitor locks in addition to block inhibitor locksLennart Poettering2012-05-051-0/+10
| | | | | This is useful to allow applications to synchronously save data before the system is suspended or shut down.
* update TODOKay Sievers2012-05-041-0/+2
|
* update TODOLennart Poettering2012-05-041-2/+0
|
* readahead: store inode numbers in pack fileLennart Poettering2012-05-041-2/+0
| | | | | | If the inode nr for each file is available in the pack file we can easily detect replaced files (like they result from package upgrades) which we can then skip to readahead.
* cgroup: fix alloca() misuse in cg_shorten_controllers()Lennart Poettering2012-05-031-2/+0
|
* dbus: include unit name in JobNew/JobRemoved signalsLennart Poettering2012-05-031-4/+2
| | | | | This breaks D-Bus interface slightly, but since the D-Bus API isn't covered by the interface stability promise this should be OK.
* service: warn if a dbus name is specified but the service type is not dbusLennart Poettering2012-05-031-0/+4
|
* update TODOLennart Poettering2012-05-031-0/+5
|
* TODOLennart Poettering2012-04-301-2/+0
|
* update TODOLennart Poettering2012-04-301-0/+3
|
* update TODOKay Sievers2012-04-301-0/+4
|
* update TODOKay Sievers2012-04-261-3/+4
|
* update TODOLennart Poettering2012-04-241-0/+4
|
* readahead: rather than checking for virtualization in the C code, use ↵Lennart Poettering2012-04-241-0/+2
| | | | ConditionVirtualization= in the unit
* nspawn: add --uuid= switch to allow setting the machine id for the containerLennart Poettering2012-04-221-5/+1
|
* nspawn: add -b switch to automatically look for an init binaryLennart Poettering2012-04-221-0/+2
|
* util: fix tty_is_vc_resolve() in a container where ↵Lennart Poettering2012-04-221-0/+3
| | | | /sys/class/tty/console/active is misleading
* update TODOLennart Poettering2012-04-221-0/+8
|
* main: log to the journal in container mode, by defaultLennart Poettering2012-04-201-2/+4
|
* docs: rebase html documentation for online and local useKay Sievers2012-04-191-1/+1
|
* update TODOKay Sievers2012-04-181-0/+4
|
* build-sys: move dev-setup to label.laKay Sievers2012-04-181-0/+2
|
* udev: unify /dev static symlink setupKay Sievers2012-04-171-1/+4
|
* update TODOKay Sievers2012-04-171-0/+4
|
* update TODOKay Sievers2012-04-171-6/+4
|
* update TODOLennart Poettering2012-04-171-0/+2
|
* update TODOKay Sievers2012-04-171-1/+2
|
* udev: replace util_create_path() with mkdir_parents()Kay Sievers2012-04-171-2/+0
|
* udev: remove configuration options for /dev, /sys, /run directoriesKay Sievers2012-04-161-1/+4
|
* logind: remove redundant entries from logind's default controller lists tooLennart Poettering2012-04-161-4/+0
|
* systemctl: show main and control PID explicitly in cgroup-showLennart Poettering2012-04-161-12/+1
| | | | | | | In some cases the main/control PID of a service can be outside of the services cgroups (for example, if logind readjusts the processes' cgroup). In order to clarify this for the user show the main/control PID in the cgroup tree nonetheless, but mark them specially.
* cgls: don't show empty cgroups by defaultLennart Poettering2012-04-161-0/+2
|
* logind: add shutdown/suspend/idle inhibition frameworkLennart Poettering2012-04-161-1/+3
|
* udev: udev_monitor_new_from_socket() - log error and remove from public headerKay Sievers2012-04-151-2/+0
|
* udev: cleanup the udev cgroup when the daemon enters the idle stateKay Sievers2012-04-151-3/+0
|
* udev: clarify man page regarding starting dameonsKay Sievers2012-04-141-5/+8
|
* service: place control command in subcgroup control/Lennart Poettering2012-04-131-2/+0
| | | | | | | | | | | | | | | | | | Previously, we were brutally and onconditionally killing all processes in a service's cgroup before starting the service anew, in order to ensure that StartPre lines cannot be misused to spawn long-running processes. On logind-less systems this has the effect that restarting sshd necessarily calls all active ssh sessions, which is usually not desirable. With this patch control processes for a service are placed in a sub-cgroup called "control/". When starting a service anew we simply kill this cgroup, but not the main cgroup, in order to avoid killing any long-running non-control processes from previous runs. https://bugzilla.redhat.com/show_bug.cgi?id=805942
* polkit: spawn agent in --fallback modeLennart Poettering2012-04-131-2/+0
|
* One can specify in which cgroup hierarchies a systemd-nspawn container will ↵Léo Gillot-Lamure2012-04-121-0/+2
| | | | appear
* update TODOLennart Poettering2012-04-111-7/+0
|
* units: exclude gettys from isolate requestsLennart Poettering2012-04-111-2/+2
| | | | | | | | | | | | | | | | gettys are nowadays mostly autospawned and hence usually subject to being shut down on isolate requests, since they are no dependency of any other unit. This is a bad idea if the user isolates between multi-user.graphical and graphical.target, hence exclude them from the isolation. This has the effect that gettys no longer cleaned up when emergency.target is isolated, which might actualy be considered a feature, even though it is a change from previous behaviour... Note that the one getty that really matters (the one on tty1) is still removed when isolating to emergency.target since it conflicts with emergency.service.
* main: disarm watchdog when preparing for reexecutionLennart Poettering2012-04-111-0/+3
|
* main: drop container/initrd env vars from inherited setLennart Poettering2012-04-111-9/+0
| | | | | Leave the env vars used in the container/initrd logic set for PID1, but don't inherit them to any children.
* update TODOKay Sievers2012-04-101-4/+0
|
* update TODOKay Sievers2012-04-091-0/+6
|
* udev: remove RUN+="socket:.." and udev_monitor_new_from_netlink()Kay Sievers2012-04-091-4/+1
|
* udev: fix test-udev binaryKay Sievers2012-04-081-0/+2
|