Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-25 | job: add comments to JobResult values | Michal Schmidt | |
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 | journalctl: remove left-over log message | Lennart Poettering | |
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 | cgls: correctly ellipsize command lines for PIDs >= 1000000 | Mantas Mikulėnas | |
2012-10-23 | udev: add hardware database support | Kay Sievers | |
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 | systemctl: refer to systemctl -n, to not overwhelm the admin | 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 | 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 | util: add (x)bsearch_r(), the missing counterpart of qsort_r() | Kay Sievers | |
2012-10-21 | hostnamectl: add more really basic system info to the status output | Lennart Poettering | |
2012-10-21 | journal: use le64_t instead of uint64_t where this is appropriate | Lennart Poettering | |
2012-10-20 | journal: link up documentation with the file structure header | Lennart Poettering | |
2012-10-19 | shared/install: fix typo in comment | Christian Hesse | |
2012-10-19 | systemctl: fix return code in chroot | Christian Hesse | |
If 'systemctl enable' (and friends) is run inside chroot it always exits with a bad return code. unit_file_enable() returns the number of symlink rules that were supposed to be created. So resetting r to 0 and exiting gracefully should be the correct way. | |||
2012-10-19 | make sure __NR_name_to_handle_at is correctly defined | Michael Olbrich | |
341 is only valid for x86, so don't use it for other architectures. Add the correct numbers for ARM and PowerPC while at it. | |||
2012-10-19 | random-seed: fix error message typo | Umut Tezduyar | |
The file node is /dev/urandom, not /dev/random. | |||
2012-10-19 | journal: add tool to extract coredumps | Zbigniew Jędrzejewski-Szmek | |
'systemd-coredumpctl' will list available coredumps: PID UID GID sig exe 32452 500 500 11 /home/zbyszek/systemd/build/journalctl 32666 500 500 11 /usr/lib64/valgrind/memcheck-amd64-linux ... 'systemd-coredumpctl dump PID' will write the coredump to specified file or stdout. | |||
2012-10-19 | keymap: Tolerate invalid entries in keymaps | Martin Pitt | |
Some keymaps apply to a large range of computer models, not all of which have all of the scan codes in the maps. If a single scan code is invalid, do not abort but continue with the next entry in the map. Instead just show the error message for that particular scan code, to help with debugging. | |||
2012-10-19 | keymap: Fix parsing of hex scan codes in tables | Martin Pitt | |
Commit b1f87c76b1 changed sscanf from %i to %u, as scan codes are unsigned numbers which can be > 0x7FFFFFFF. However, sscanf doesn't accept hexadecimal numbers for %u. It works fine with %i, so revert this back. | |||
2012-10-19 | README.keymap.txt: Drop fdi2rules.py documentation | Martin Pitt | |
This was removed ages ago. | |||
2012-10-19 | locale: add client tool localectl similar to hostnamectl/timedatectl | Lennart Poettering | |
2012-10-19 | systemctl: modernization | Lennart Poettering | |
2012-10-19 | util: change endswith() to return a pointer to the suffix | Lennart Poettering | |
2012-10-19 | set: introduce strv_sort() | Lennart Poettering | |
2012-10-19 | set: introduce set_get_strv() | Lennart Poettering | |
2012-10-19 | timedatectl,hostnamectl: rework --help text | Lennart Poettering | |
2012-10-19 | journald.conf: remove MinSize= settings | Lennart Poettering | |
There's no point in making this configurable, so let's drop it in order to simplify configuration a bit. | |||
2012-10-19 | systemctl: remove --follow option | Lennart Poettering | |
Given that "journalctl -u" exists now there's no need to duplicate this functionality in systemctl, so let's drop this, especially given that it always felt a bit awkward to overload "-f" to both --force and --follow, and to have continues output with a status header for this. systemctl status -f avahi-daemon now becomes: journalctl -fu avahi-daemon Which is shorter and a lot less redundant. | |||
2012-10-19 | util: unify line caching and column caching | Lennart Poettering | |
2012-10-19 | util: unify usage of on_tty() in util.c | Lennart Poettering | |
2012-10-19 | util: simplify column caching logic | Lennart Poettering | |
2012-10-18 | journalctl: unify ellipsation handling between journalctl and systemctl | Lennart Poettering | |
2012-10-18 | journalctl: don't ellipsize unless on a tty | Lennart Poettering | |
2012-10-18 | journalctl: honour -n if -F is used | Lennart Poettering | |
2012-10-18 | journal: fix symbol versioning file | Lennart Poettering | |
2012-10-18 | journal: typo fix | Lennart Poettering | |
2012-10-18 | journal: implement filtering in browse.html | Lennart Poettering | |
2012-10-18 | journal: add high-level match option to filter by current boot id | Lennart Poettering | |
2012-10-18 | journal: add ability to list unique fields to gatewayd | Lennart Poettering | |
2012-10-18 | journal: validate field name in sd_journal_query_unique() | Lennart Poettering | |
2012-10-18 | systemd: use structured logging for unit changes | Zbigniew Jędrzejewski-Szmek | |
Information which unit a log entry pertains to enables systemctl status to display more log messages. | |||
2012-10-18 | core/execute: use cleanup_strv_free | Zbigniew Jędrzejewski-Szmek | |
2012-10-18 | libsystemd-journal: export sd_journal_restart_unique | Zbigniew Jędrzejewski-Szmek | |