summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-20unit: split off KillContext from ExecContext containing only kill definitionsLennart Poettering
2012-07-20man: add reference to export format spec to journalctlLennart Poettering
2012-07-19build-sys: fix variable assignmentKay Sievers
2012-07-19units: fix section of man page link in systemd-logind.serviceLennart Poettering
https://bugs.freedesktop.org/show_bug.cgi?id=51963
2012-07-19journald: upgrade signal reception message to INFOLennart Poettering
2012-07-19man: fix sysctl.d(5) man page copy/paste mistakeLennart Poettering
https://bugs.freedesktop.org/show_bug.cgi?id=52254
2012-07-19udev: firmware - do not cancel requests in the initrdKay Sievers
2012-07-19use #pragma once instead of foo*foo #define guardsShawn Landden
#pragma once has been "un-deprecated" in gcc since 3.3, and is widely supported in other compilers. I've been using and maintaining (rebasing) this patch for a while now, as it annoyed me to see #ifndef fooblahfoo, etc all over the place, almost arrogant about the annoyance of having to define all these names to perform a commen but neccicary functionality, when a completely superior alternative exists. I havn't sent it till now, cause its kindof a style change, and it is bad voodoo to mess with style that has been established by more established editors. So feel free to lambast me as a crazy bafoon. v2 - preserve externally used headers
2012-07-19journal: allow watching symlinked journal dirsLennart Poettering
2012-07-19journal: when watching directories actually watch the directories asked forLennart Poettering
2012-07-19journal: rotate busy files away when we try to write to themLennart Poettering
2012-07-19journal: follow symlinks when enumerating journalsLennart Poettering
2012-07-19manager: use a private notify sockets in containers to avoid problems with ↵Lennart Poettering
shared abstract socket namespaces
2012-07-19killall: avoid gcc warning about wait name clashLennart Poettering
2012-07-19nspawn: generate proper error messages in the childLennart Poettering
2012-07-19journald: don't choke on journal files with no cutoff dateLennart Poettering
2012-07-19nspawn: introduce new --link-journal= switch to link container journals into ↵Lennart Poettering
host
2012-07-18journal: remove all of /run/log/journal when serializing, since the machine ↵Lennart Poettering
ID might deviate
2012-07-18journal: don't complain if the syslog forwarder socket doesn't existLennart Poettering
2012-07-18journal: when we suggest a rotation, explain whyLennart Poettering
2012-07-18journal: estimate data hash table size a bit larger by defaultLennart Poettering
2012-07-18journald: fix another bad memory accessLennart Poettering
If we rotate due to header out of date we need the new journal file object, too.
2012-07-18update TODOLennart Poettering
2012-07-18journald: fix bad memory accessLennart Poettering
After vacuuming we need to retrieve the journal file object again, since it might have changed.
2012-07-18keymap: Add Dell Latitude force-release quirkRex Tsai
Signed-off-by: Martin Pitt <martinpitt@gnome.org>
2012-07-18service: don't print a warning if we are in autorestart state, and can't ↵Lennart Poettering
start a unit just yet
2012-07-18units: don't enforce a holdoff time for journald, logind, udevdLennart Poettering
These services should be restarted as quickly as possible if they fail, and the extra safety net of the holdoff time is not necessary.
2012-07-18service: make start jobs wait, not fail, when an automatic restart is queuedLennart Poettering
When an automatic restart is already queued, then make subsequent start jobs wait until the restart can be handled (i.e. after the holdhoff time), instead of simply fail.
2012-07-18unit: don't serialize job state, only unit state across switch-rootLennart Poettering
2012-07-18NEWS: correct NTP implementation dataLennart Poettering
2012-07-18build-sys: put all BUILT_SOURCES in CLEANFILESZbigniew Jędrzejewski-Szmek
Since currently all items in BUILT_SOURCES are also in CLEANFILES, we can reduce clutter by appending BUILT_SOURCES directly.
2012-07-18build-sys: use .DELETE_ON_ERRORZbigniew Jędrzejewski-Szmek
All instances of "|| rm $@" are replaced with .DELETE_ON_ERROR, which has a similar effect. One difference is that the return code is not masked by rm return code. .DELETE_ON_ERROR is GNU-Make specific, but -Wno-portability is already defined, and it's unlikely that anyone would build systemd with a shell not supporting .DELETE_ON_ERROR. If they did, then .DELETE_ON_ERROR would be silently ignored, i.e. in the worst case a garbage file wouldn't be deleted, which is not very serious.
2012-07-17man: html - cross-ref man page references and add Index linkKay Sievers
2012-07-17Makefile.am: fixed dependencies for man/index.htmlHarald Hoyer
2012-07-17switch-root: don't wait for processesLennart Poettering
When we transition from the initrd to the main system, don't reap processes, so that they can be handled normally after deserialization.
2012-07-17journalctl: do not ellipsize when using pagerZbigniew Jędrzejewski-Szmek
If a pager is used, ellipsization is redundant — the pager does that better by hiding the part that cannot be shown. Pager's advantage is that the user can press → to view the hidden part of a message, and then ← to return.
2012-07-17logs: Adapt interface in log-show.c (show_journal_by_unit)Zbigniew Jędrzejewski-Szmek
Convert more flag arguments into one flag variable.
2012-07-17logs: Adapt interface in log-show.c (output_journal)Zbigniew Jędrzejewski-Szmek
In preparation for adding more output switches, convert a series of flags arguments into one flag variable.
2012-07-17Makefile.am: MKDIR_P man for man/index.htmlHarald Hoyer
2012-07-17Revert "keymap: add --version option"Kay Sievers
This reverts commit d8f173fd2ee9ee60affa1a4d1a89f2501977fb0b.
2012-07-17keymap: add --version optionZbigniew Jędrzejewski-Szmek
2012-07-17systemd: add --version optionZbigniew Jędrzejewski-Szmek
systemd --version mirrors systemctl --version: $ ./systemd --version systemd 186 other +PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT -LIBCRYPTSETUP This information can be retrieved by other means (systemctl, etc.), but it's easier for a newbie if 'systemd --version' says something useful. And 'systemd --help' is already there, so let's complement that with '--version'.
2012-07-17update TODOLennart Poettering
2012-07-17build-sys: distcheck - add seccomp*.h to SOURCESKay Sievers
2012-07-17build-sys: use C preprocessor for key list, tooLennart Poettering
2012-07-17execute: free syscall filter array after useLennart Poettering
2012-07-17gitignore: tags filesZbigniew Jędrzejewski-Szmek
2012-07-17build-sys: automake needs to know about generated filesZbigniew Jędrzejewski-Szmek
CC src/core/libsystemd_core_la-syscall-list.lo src/core/syscall-list.c:31:29: fatal error: syscall-to-name.h: No such file or directory
2012-07-17execute: support syscall filtering using seccomp filtersLennart Poettering
2012-07-17journal: actually set archived files to archived stateLennart Poettering