Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-14 | journal: synchronize seqnum across files | Lennart Poettering | |
2011-10-14 | journal: fix field retrieval by name | Lennart Poettering | |
2011-10-14 | journal: implement parallel file traversal | Lennart Poettering | |
2011-10-13 | journal: implementation rotation | Lennart Poettering | |
2011-10-12 | journalctl: find journal files in right path | Lennart Poettering | |
2011-10-12 | journal: add cgroup path to entries | Lennart Poettering | |
2011-10-12 | journal: place machin journals in machine specific subdirectories | Lennart Poettering | |
2011-10-12 | util: fix build | Lennart Poettering | |
2011-10-12 | journal: only fallocate() what we really need to avoid slowness on file ↵ | Lennart Poettering | |
systems which do not support fallocate natively | |||
2011-10-12 | Merge branch 'master' into journal | Lennart Poettering | |
2011-10-11 | util: properly detect what the last capability is | Lennart Poettering | |
2011-10-11 | build-sys: bump release for v37systemd/v37 | Lennart Poettering | |
2011-10-11 | service: don't try to guess PID for SysV services anymore | Lennart Poettering | |
As it turns out there are quite a number of SysV services too broken to make the guessing work: instead of returning in the parent only after the child is fully initialized they return immediately. The effect is that the guessing in systemd might happen too early, at a time where the final main process doesn't exist yet. By turning this off we won't try to detect the main pid anymore, with the effect that all processes of the service in question are considered equally likely to be the main process. | |||
2011-10-11 | localed: make sure s-s-k doesn't create any X11 config files anymore | Lennart Poettering | |
2011-10-11 | localed: shorten generate-kbd-model-map | Zbigniew Jędrzejewski-Szmek | |
Output is identical. | |||
2011-10-11 | pager: add _noreturn_ to pager_fallback() | Zbigniew Jędrzejewski-Szmek | |
src/pager.c: In function ‘pager_fallback’: src/pager.c:35:13: warning: function might be possible candidate for attribute ‘noreturn’ [-Wmissing-noreturn] | |||
2011-10-11 | unit: introduce ConditionCapability | Lennart Poettering | |
2011-10-11 | units: forgot target units | Lennart Poettering | |
2011-10-11 | units: increase LimitNOFILE a bit | Lennart Poettering | |
since we need one fd per session (for logind) and one fd per service (for stdout-syslog-bridge) increase the default rlimit a bit. | |||
2011-10-11 | logind: fail gracefully if too many sessions are created | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=744726 | |||
2011-10-11 | timedate: fall back to /etc/sysconfig/clock on Fedora, for compatibility ↵ | Lennart Poettering | |
with legacy | |||
2011-10-11 | units: remount root and API FS before all mount units are applied | Lennart Poettering | |
In order to ensure that bind mounts copy the final mount settings to the new bind mount make the root and API FS mount options are applied before the other file systems are mounted. https://bugzilla.redhat.com/show_bug.cgi?id=718464 | |||
2011-10-11 | units: introduce local-fs-pre.target and remote-fs-pre.target | Lennart Poettering | |
This hook target enables services to order themselves between network.target and remote mounts, which is needed for GFS2 and similar systems. | |||
2011-10-11 | l10n: Reword the polish translation a bit | Zbigniew Jędrzejewski-Szmek | |
s/siedzenie/stanowisko/: they both translate to seat in English, but 'stanowisko' is a place where you work, while 'siedzenie' is like a chair. s/podłączanie/podłączenie/: we are doing it now, now sometime in the future. | |||
2011-10-11 | man: document list-unit-files | Ran Benita | |
It's documented in the --help, but not in the manpage. | |||
2011-10-11 | sd-login.h: correct spelling mistakes in comments | Dave Reisner | |
2011-10-11 | hostname-setup: Frugalware switched to /etc/hostname | Miklos Vajna | |
2011-10-11 | readahead: lower max file size for readahead | Paolo Bonzini | |
https://bugs.freedesktop.org/show_bug.cgi?id=41336 | |||
2011-10-11 | man: .include directive does not include as textual include it includes by ↵ | Barry Scott | |
parsing the include file. This means that section headers must be used inside of a .include file otherwise all the lines are ignored. | |||
2011-10-11 | man: for ExecStart= provide more details on env var substitution and how ↵ | Barry Scott | |
that turns into arguments. For EnvironmentFile= explain that double quotes can be used to protect whitespace. | |||
2011-10-11 | update TODO | Lennart Poettering | |
2011-10-10 | util: fix close() call on wrong variable | Thomas Jarosch | |
Detected by "cppcheck" (actually it detected a file descriptor leak) | |||
2011-10-10 | tmpfiles: fix file descriptor leak | Thomas Jarosch | |
Detected by "cppcheck" | |||
2011-10-10 | update TODO | Lennart Poettering | |
2011-10-09 | test_virtualization: do not try to compare id in !virt context | Kay Sievers | |
2011-10-09 | update TODO | Kay Sievers | |
2011-10-08 | journal: implement parallel traversal in client | Lennart Poettering | |
2011-10-07 | journal: split user logs into their own journal files | Lennart Poettering | |
2011-10-07 | journal: replace linked list by hashmap when merging files | Lennart Poettering | |
2011-10-07 | journal: store XOR combination of entry data object hashes to identify hash ↵ | Lennart Poettering | |
lines | |||
2011-10-07 | journal: add preliminary incomplete implementation | Lennart Poettering | |
2011-10-07 | update TODO | Lennart Poettering | |
2011-10-07 | hashmap: use different version of DJB's hash algorithm that uses shifting ↵ | Lennart Poettering | |
instead of multiplication | |||
2011-10-07 | update TODO | Lennart Poettering | |
2011-10-04 | logind: properly generate session creation response on dbus | Lennart Poettering | |
This fixes the various reported issues with dbus message parsing when running su. | |||
2011-09-29 | systemctl: fix corrupted output of units | Michal Schmidt | |
On some systems the list of units in systemctl output came out wrong, all on one line and with missing descriptions. It turns out printf() really attempts to mmap 2G memory when INT_MAX is passed as the field width. On machines with small virtual memory without overcommit the mmap inside printf() failed. Do not use INT_MAX for unlimited width. | |||
2011-09-29 | localed: handle multiple X11 kbd layouts | Lennart Poettering | |
https://bugs.freedesktop.org/show_bug.cgi?id=41341 | |||
2011-09-29 | systemctl: fix error message when no connection to systemd is available | Lennart Poettering | |
2011-09-29 | systemctl: fix detection whether the dbus connection is available | Lennart Poettering | |
2011-09-29 | build-sys: fix build | Lennart Poettering | |