Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-14 | job: change red [ABORT] status to yellow [DEPEND] | Michal Schmidt | |
The red "[ABORT]" for a dependency failure is too scary. It suggests a crash. And it suggests a problem with the unit itself. Change it to a yellow "[DEPEND]" message. The color communicates the level of seriousness better. | |||
2012-05-14 | job: only jobs on the runqueue can be run | Michal Schmidt | |
2012-05-14 | units: do not quit plymouth too early | Michal Schmidt | |
2012-05-14 | keymap: Add Mio N890 | Martin Pitt | |
https://launchpad.net/bugs/998621 | |||
2012-05-14 | update mailmap for Martin Pitt | Martin Pitt | |
2012-05-10 | udev: path_id - cciss - set "we have a bus" flag | Kay Sievers | |
2012-05-10 | udev: path_id - add cciss support | Hannes Reinecke | |
2012-05-09 | dbus-manager: fix tainted string | Michal Schmidt | |
The pointer to the end of the string was not advanced after adding the "cgroups-missing" taint. If "local-hwclock" was detected too, it would overwrite the previous string. With 'e' always pointing to the end of the string, removing the last delimiter is easier. | |||
2012-05-09 | main: fix uninitialized variable | Michal Schmidt | |
2012-05-09 | main: fix assertion failure due to use of ELEMENTSOF on a non-array | Michal Schmidt | |
2012-05-09 | bash-completion: use printf instead of echo | Michal Schmidt | |
If the expanded argument begins with '-', echo would try to interpret it as options. printf does not have this problem. Use it everywhere. | |||
2012-05-09 | bash-completion: avoid losing backslashes in unit names | Michal Schmidt | |
Use 'read -r' everywhere to consider backslashes as parts of the input line. Single-quote the arguments to 'compgen -W' to avoid immediate expansion. compgen itself will expand the argument. Fixes a possible reason for "Failed to issue method call: Unknown unit" after requesting completion. https://bugzilla.redhat.com/show_bug.cgi?id=814966 | |||
2012-05-09 | update TODO | Lennart Poettering | |
2012-05-09 | util: a few updates for rm_rf() | Lennart Poettering | |
2012-05-09 | manager: introduce SwitchRoot bus call for initrd/main transition | Lennart Poettering | |
2012-05-08 | path-util: there is no function path_parent() | Lennart Poettering | |
2012-05-08 | main: simplify+unify logic for parsing runtime booleans | Lennart Poettering | |
2012-05-08 | logind: implement suspend/hibernate calls with inhibition logic | Lennart Poettering | |
2012-05-08 | sleep: implement suspend/hibernate as first class targets | Lennart Poettering | |
2012-05-08 | logind: use "sleep" as generic term for "suspend", "hibernate", and later on ↵ | Lennart Poettering | |
"hybrid suspend" | |||
2012-05-08 | logind: fix test-inhibit | Lennart Poettering | |
2012-05-08 | autogen.sh: undef _FORTIFY_SOURCE, which now logs warnings when used with -O0 | Kay Sievers | |
2012-05-08 | util: split-out path-util.[ch] | Kay Sievers | |
2012-05-08 | util: split-out hwclock.[ch] | Kay Sievers | |
2012-05-07 | logind: fix memory leak | Frederic Crozat | |
2012-05-07 | update TODO | Lennart Poettering | |
2012-05-07 | Update TODO | Lennart Poettering | |
2012-05-07 | util: split-out conf-file.[ch] | Kay Sievers | |
2012-05-07 | udev: path_id - skip PCI-only-parents for block devices | Kay Sievers | |
2012-05-07 | udev: use conf_files_list() to search rules files | Kay Sievers | |
2012-05-07 | conf_files_list(): split out conf_files_list_strv() | Kay Sievers | |
2012-05-07 | conf_files_list(): files-add() - do not canonicalize file names | Kay Sievers | |
File names in /etc, /run, /usr/lib are sorted/overridden by basename. Sorting things like "/dev/null" with the basename "null" in the hash of config files breaks the ordering and the overriding logic. | |||
2012-05-05 | logind: implement delay inhibitor locks in addition to block inhibitor locks | Lennart Poettering | |
This is useful to allow applications to synchronously save data before the system is suspended or shut down. | |||
2012-05-04 | update TODO | Kay Sievers | |
2012-05-04 | udev: fix the ENV{} blacklist logic | Kay Sievers | |
2012-05-04 | systemctl: fix typo | Lennart Poettering | |
as Sergey Ptashnick pointed out we should write "poweroff" once instead of "reboot" twice. | |||
2012-05-04 | systemd-analyze: add a --user option to support user instances | Patrick McCarty | |
2012-05-04 | man: clarify _TRANSPORT | Shawn Landden | |
"resp." where it was confuses reader that stdout and stderr might go to differn't places | |||
2012-05-04 | update TODO | Lennart Poettering | |
2012-05-04 | readahead: store inode numbers in pack file | Lennart Poettering | |
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. | |||
2012-05-04 | units: use OOMScoreAdjust= in the unit files to set OOM score adjust | Lennart Poettering | |
2012-05-04 | readhead: temporarily lower the kernel's read_ahead_kb setting while collecting | Lennart Poettering | |
While collecting readahead data we want to know exactly what userspace accesses unblurred by the kernel's read_ahead_kb. Hence lower this during collection, and raise it afterwards. This is mostly based on ideas and code by Auke Kok. | |||
2012-05-03 | cgroup: fix alloca() misuse in cg_shorten_controllers() | Lennart Poettering | |
2012-05-03 | dbus: handle invalid enum values better | Lennart Poettering | |
2012-05-03 | dbus: include unit name in JobNew/JobRemoved signals | Lennart Poettering | |
This breaks D-Bus interface slightly, but since the D-Bus API isn't covered by the interface stability promise this should be OK. | |||
2012-05-03 | service: explicitly remove control/ subcgroup after each control command | Lennart Poettering | |
The kernel will only notify us of cgroups running empty if no subcgroups exist anymore. Hence make sure we don't leave our own control/ subcgroup around longer than necessary. https://bugzilla.redhat.com/show_bug.cgi?id=818381 | |||
2012-05-03 | systemctl: allow 'systemctl reboot -ff' to succeed even without D-Bus | Lennart Poettering | |
2012-05-03 | systemctl: print a nice error message if an unprivileged user calls ↵ | Lennart Poettering | |
systemctl reboot -ff | |||
2012-05-03 | systemctl: get rid of arg_immediate and fold it into arg_force | Lennart Poettering | |
2012-05-03 | rc-local-generator: hook halt-local in based on generator too | Lennart Poettering | |