summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-23units: also add journalctl suggestion to emergency.serviceLennart 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-23units: suggest journalctl -b in rescue.service so that only messages from ↵Lennart Poettering
the current boot are shown
2012-10-23systemctl: refer to systemctl -n, to not overwhelm the adminLennart Poettering
2012-10-23build-sys: prepare 195Lennart Poettering
2012-10-23update TODOLennart Poettering
2012-10-22readahead: fix fd validity checkMichal Schmidt
https://bugzilla.redhat.com/show_bug.cgi?id=868603
2012-10-22shared: strbuf - add descriprionKay Sievers
2012-10-22shared: move sparse-endian.h from journalKay Sievers
2012-10-22build-sys: fix distcheckKay Sievers
2012-10-22shared: strbuf - add descriptionKay Sievers
2012-10-22udev: use strbuf to store rules stringsKay Sievers
2012-10-22shared: strbuf - add string de-duplication facilityKay Sievers
2012-10-22update .gitignoreKay Sievers
2012-10-22util: add (x)bsearch_r(), the missing counterpart of qsort_r()Kay Sievers
2012-10-21bash-completion: update journalctl for recently added flagsDave Reisner
Fixes a few minor bugs as well with flags which take arguments but for which the values can never be known.
2012-10-21configure.ac: fix typo in fallback value for KILLDave Reisner
2012-10-21hostnamectl: add more really basic system info to the status outputLennart Poettering
2012-10-21man: add man page for localectlLennart Poettering
2012-10-21journal: use le64_t instead of uint64_t where this is appropriateLennart Poettering
2012-10-20bash-completion: avoid appending space after field competionDave 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-20bash-completion: ensure iterators are locally scopedDave Reisner
Avoids leaking the 'i' variable to the user's shell session.
2012-10-20bash-completion: add completions for hostnamectlDave Reisner
2012-10-20journal: link up documentation with the file structure headerLennart Poettering
2012-10-20update TODOLennart Poettering
2012-10-20bash-completion: add completions for localectlDave Reisner
2012-10-20bash-completion: add completions for timedatectlDave Reisner
2012-10-19shared/install: fix typo in commentChristian Hesse
2012-10-19systemctl: fix return code in chrootChristian 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-19make sure __NR_name_to_handle_at is correctly definedMichael 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-19random-seed: fix error message typoUmut Tezduyar
The file node is /dev/urandom, not /dev/random.
2012-10-19journal: add tool to extract coredumpsZbigniew 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-19keymap: Tolerate invalid entries in keymapsMartin 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-19keymap: Fix parsing of hex scan codes in tablesMartin 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-19README.keymap.txt: Drop fdi2rules.py documentationMartin Pitt
This was removed ages ago.
2012-10-19locale: add client tool localectl similar to hostnamectl/timedatectlLennart Poettering
2012-10-19systemctl: modernizationLennart Poettering
2012-10-19util: change endswith() to return a pointer to the suffixLennart Poettering
2012-10-19set: introduce strv_sort()Lennart Poettering
2012-10-19set: introduce set_get_strv()Lennart Poettering
2012-10-19timedatectl,hostnamectl: rework --help textLennart Poettering
2012-10-19Update TODOLennart Poettering
2012-10-19journald.conf: remove MinSize= settingsLennart Poettering
There's no point in making this configurable, so let's drop it in order to simplify configuration a bit.
2012-10-19systemctl: remove --follow optionLennart 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-19util: unify line caching and column cachingLennart Poettering
2012-10-19util: unify usage of on_tty() in util.cLennart Poettering
2012-10-19util: simplify column caching logicLennart Poettering
2012-10-18man: fix compilation warning in sd_journal_query_unique exampleZbigniew Jędrzejewski-Szmek
2012-10-18bash-completion: complete values for journal fieldsDave Reisner
This adds completion for the new -F, --field flag, but also uses this option directly from journalctl to complete values for fields which might be used as filters.
2012-10-18journalctl: unify ellipsation handling between journalctl and systemctlLennart Poettering
2012-10-18journalctl: don't ellipsize unless on a ttyLennart Poettering