Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-25 | udev: hwdb: add acpi/pnp vendor description file | Kay Sievers | |
2012-10-25 | udev: set optind = 0, not the usual 1, to reset getopt_long()s internal state | Kay Sievers | |
2012-10-25 | job: avoid recursion into transaction code from job cancelation | Michal Schmidt | |
I hit an "assert(j->installed)" failure in transaction_apply(). Looking into the backtrace I saw what happened: 1. The system was booting. var.mount/start was an installed job. 2. I pressed Ctrl+Alt+Del. 3. reboot.target was going to be isolated. 4. transaction_apply() proceeded to install a var.mount/stop job. 5. job_install() canceled the conflicting start job. 6. Depending jobs ended recursively with JOB_DEPENDENCY, among them was local-fs.target/start. 7. Its OnFailure action triggered - emergency.target was now going to be isolated. 8. We recursed back into transaction_apply() where the half-installed var.mount/stop job confused us. Recursing from job installation back into the transaction code cannot be a good idea. Avoid the problem by canceling the conflicting job non-recursively in job_install(). I don't think we'll miss anything by not recursing here. After all, we are called from transaction_apply(). We will not be installing just this one job, but all jobs from a transaction. All requirement dependencies will be included in it and will be installed separately. Every transaction job will get a chance to cancel its own conflicting installed job. | |||
2012-10-25 | job: add comments to JobResult values | Michal Schmidt | |
2012-10-25 | update TODO | Lennart Poettering | |
2012-10-25 | journal: properly serialize fields with multiple values into JSON | Lennart Poettering | |
This now matches the JSON serialization spec from: http://www.freedesktop.org/wiki/Software/systemd/json | |||
2012-10-24 | remove Fedora hostname, locale, vconsole legacy file support | Kay Sievers | |
2012-10-24 | man: udev - add 'udevadm hwdb --update' | Kay Sievers | |
2012-10-24 | journalctl: remove left-over log message | Lennart Poettering | |
2012-10-24 | update TODO | Lennart Poettering | |
2012-10-23 | units: don't order tmp.monut after local-fs-pre.target | Tom Gundersen | |
Since tmp.mount is a tmpfs this is not necesary, and should speed up boot marginally. | |||
2012-10-23 | man: fix typo in tmpfiles.d | Tom Gundersen | |
Reported-by: Jason St. John <jstjohn@purdue.edu> | |||
2012-10-23 | tmpfiles: allow Age to be set to 0 | Tom Gundersen | |
Mostly useful for testing purposes. Setting Age to 1s works just as well, but it is surprising that using 0s (or just 0) does not work. Also clarify this in the documentation. | |||
2012-10-23 | update TODO | Lennart Poettering | |
2012-10-23 | cgls: correctly ellipsize command lines for PIDs >= 1000000 | Mantas Mikulėnas | |
2012-10-23 | rules: Remove HP iLO from USB HID PM rules | Tony Camuso | |
HP iLO fw versions below 1.50 incorrectly report that HP iLO virtual Kbd/Mouse supports remote wakeup. With the rules change in commit 3bfc7a97b1824fcdfb738617d9a5450a20a22a0f, the HP iLO was listed for power control. In iLO fw versions less than 1.50, the iLO Kbd/Mouse become unresponsive once they are suspended. HP iLO fw versions 1.50+ correctly report that they don't support remote wakeup, which makes the rules moot in any case. | |||
2012-10-23 | udev: add hardware database support | Kay Sievers | |
2012-10-23 | build-sys: add check for microhttpd version | Zbigniew Jędrzejewski-Szmek | |
2012-10-23 | man: reword journalctl -n description | Zbigniew Jędrzejewski-Szmek | |
2012-10-23 | man: the corresponding LSB facility to rpcbind.target is $portmap | Michael Biebl | |
2012-10-23 | update contributors listsystemd/v195 | Lennart Poettering | |
2012-10-23 | update TODO | Lennart Poettering | |
2012-10-23 | mount: make sure m->where is set before unit_add_exec_dependencies() | Will Woods | |
If you enter unit_add_exec_dependencies with m->where = NULL, you'll very likely end up aborting somewhere under socket_needs_mount. (When systemd goes to check to see if the journald socket requires your mount, it'll do path_startswith(path, m->where)... *kaboom*) This patch should ensure that: a) both branches in mount_add_one() set m->where, and b) mount_add_extras() calls unit_add_exec_dependencies() *after* setting m->where. | |||
2012-10-23 | units: use numerig signal for killing systemd, to avoid incompatibilities ↵ | Lennart Poettering | |
with procps/util-linux kill | |||
2012-10-23 | units: also add journalctl suggestion to emergency.service | Lennart Poettering | |
More often than not we enter emergency.service due to fsck failure, so it makes sense to direct people to the journal to debug those. | |||
2012-10-23 | units: suggest journalctl -b in rescue.service so that only messages from ↵ | Lennart Poettering | |
the current boot are shown | |||
2012-10-23 | systemctl: refer to systemctl -n, to not overwhelm the admin | Lennart Poettering | |
2012-10-23 | build-sys: prepare 195 | Lennart Poettering | |
2012-10-23 | update TODO | Lennart Poettering | |
2012-10-22 | readahead: fix fd validity check | Michal Schmidt | |
https://bugzilla.redhat.com/show_bug.cgi?id=868603 | |||
2012-10-22 | shared: strbuf - add descriprion | Kay Sievers | |
2012-10-22 | shared: move sparse-endian.h from journal | Kay Sievers | |
2012-10-22 | build-sys: fix distcheck | Kay Sievers | |
2012-10-22 | shared: strbuf - add description | Kay Sievers | |
2012-10-22 | udev: use strbuf to store rules strings | Kay Sievers | |
2012-10-22 | shared: strbuf - add string de-duplication facility | Kay Sievers | |
2012-10-22 | update .gitignore | Kay Sievers | |
2012-10-22 | util: add (x)bsearch_r(), the missing counterpart of qsort_r() | Kay Sievers | |
2012-10-21 | bash-completion: update journalctl for recently added flags | Dave Reisner | |
Fixes a few minor bugs as well with flags which take arguments but for which the values can never be known. | |||
2012-10-21 | configure.ac: fix typo in fallback value for KILL | Dave Reisner | |
2012-10-21 | hostnamectl: add more really basic system info to the status output | Lennart Poettering | |
2012-10-21 | man: add man page for localectl | Lennart Poettering | |
2012-10-21 | journal: use le64_t instead of uint64_t where this is appropriate | Lennart Poettering | |
2012-10-20 | bash-completion: avoid appending space after field competion | Dave Reisner | |
Resolves the TODO, and also uses compgen's -S flag to append the trailing equals, rather than relying on an array-wide parameter expansion. Suggested-by: Ran Benita <ran234@gmail.com> | |||
2012-10-20 | bash-completion: ensure iterators are locally scoped | Dave Reisner | |
Avoids leaking the 'i' variable to the user's shell session. | |||
2012-10-20 | bash-completion: add completions for hostnamectl | Dave Reisner | |
2012-10-20 | journal: link up documentation with the file structure header | Lennart Poettering | |
2012-10-20 | update TODO | Lennart Poettering | |
2012-10-20 | bash-completion: add completions for localectl | Dave Reisner | |
2012-10-20 | bash-completion: add completions for timedatectl | Dave Reisner | |