Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-18 | journald: fix another bad memory access | Lennart Poettering | |
If we rotate due to header out of date we need the new journal file object, too. | |||
2012-07-18 | update TODO | Lennart Poettering | |
2012-07-18 | journald: fix bad memory access | Lennart Poettering | |
After vacuuming we need to retrieve the journal file object again, since it might have changed. | |||
2012-07-18 | keymap: Add Dell Latitude force-release quirk | Rex Tsai | |
Signed-off-by: Martin Pitt <martinpitt@gnome.org> | |||
2012-07-18 | service: don't print a warning if we are in autorestart state, and can't ↵ | Lennart Poettering | |
start a unit just yet | |||
2012-07-18 | units: don't enforce a holdoff time for journald, logind, udevd | Lennart 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-18 | service: make start jobs wait, not fail, when an automatic restart is queued | Lennart 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-18 | unit: don't serialize job state, only unit state across switch-root | Lennart Poettering | |
2012-07-18 | NEWS: correct NTP implementation data | Lennart Poettering | |
2012-07-18 | build-sys: put all BUILT_SOURCES in CLEANFILES | Zbigniew 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-18 | build-sys: use .DELETE_ON_ERROR | Zbigniew 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-17 | man: html - cross-ref man page references and add Index link | Kay Sievers | |
2012-07-17 | Makefile.am: fixed dependencies for man/index.html | Harald Hoyer | |
2012-07-17 | switch-root: don't wait for processes | Lennart 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-17 | journalctl: do not ellipsize when using pager | Zbigniew 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-17 | logs: Adapt interface in log-show.c (show_journal_by_unit) | Zbigniew Jędrzejewski-Szmek | |
Convert more flag arguments into one flag variable. | |||
2012-07-17 | logs: 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-17 | Makefile.am: MKDIR_P man for man/index.html | Harald Hoyer | |
2012-07-17 | Revert "keymap: add --version option" | Kay Sievers | |
This reverts commit d8f173fd2ee9ee60affa1a4d1a89f2501977fb0b. | |||
2012-07-17 | keymap: add --version option | Zbigniew Jędrzejewski-Szmek | |
2012-07-17 | systemd: add --version option | Zbigniew 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-17 | update TODO | Lennart Poettering | |
2012-07-17 | build-sys: distcheck - add seccomp*.h to SOURCES | Kay Sievers | |
2012-07-17 | build-sys: use C preprocessor for key list, too | Lennart Poettering | |
2012-07-17 | execute: free syscall filter array after use | Lennart Poettering | |
2012-07-17 | gitignore: tags files | Zbigniew Jędrzejewski-Szmek | |
2012-07-17 | build-sys: automake needs to know about generated files | Zbigniew 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-17 | execute: support syscall filtering using seccomp filters | Lennart Poettering | |
2012-07-17 | journal: actually set archived files to archived state | Lennart Poettering | |
2012-07-17 | journalctl: decode more header files in --header | Lennart Poettering | |
2012-07-17 | journal: size journal data hash table based on maximum file size metrics | Lennart Poettering | |
The default of 2047 hash table entries turned out to result in way too many collisions for bigger files, hence scale the hash table size by the estimated maximum file size. | |||
2012-07-17 | journal: immediately rotate when the journal was previously not closed properly | Lennart Poettering | |
2012-07-17 | journal: automatically rotate journal files if the data hash table is full > 75% | Lennart Poettering | |
Previously, when the main data hash table grows too full the performance simply started to decrease drastically. Instead, now simply rotate to a new journal file as the hash table gets to full, so that we can start with a new fresh empty hash table. | |||
2012-07-16 | make-man-index.py: pretty-print HTML | Kay Sievers | |
2012-07-16 | journal: use tail/head timestamps from header for cutoff logic | Lennart Poettering | |
We have them, they are faster to use them, so use them... | |||
2012-07-16 | journald: don't enforce monotonicity of realtime clocks when copying entries | Lennart Poettering | |
After all the point of the realtime clock (in contrast to the monotonic clock) is that it does not have to be strictly monotonic, hence don't enforce this when flushing the journal from /run to /var. | |||
2012-07-16 | man: actually generate h2 headers for letters in index as we meant to | Lennart Poettering | |
2012-07-16 | core: fix name of dbus call parameter | Lennart Poettering | |
2012-07-16 | man: include number of man pages in index page | Lennart Poettering | |
2012-07-16 | build-sys: make building of index.html fail sensibly | Lennart Poettering | |
2012-07-16 | man: set description in italics in the index | Lennart Poettering | |
2012-07-16 | man: reword man page titles | Lennart Poettering | |
Make sure the man page titles are similar in style and capitalization so that our man page index looks pretty. | |||
2012-07-16 | man: show man page summary in index, too | Lennart Poettering | |
2012-07-16 | min: generate an index page for all man pages | Lennart Poettering | |
This makes use of python, if it is available | |||
2012-07-16 | unit: set default working directory to the user's home directory when ↵ | Lennart Poettering | |
running in user mode | |||
2012-07-16 | unit: introduce %s specifier for the user shell | Lennart Poettering | |
2012-07-16 | unit: printf specifiers %u and %h: $USER and $HOME. | Auke Kok | |
These printf specifiers allow us to refer to $HOME and $USER in unit files. These are particularly helpful in instanced units that have "User=" set, and in systemd --user domains. The specifiers will return the pw_name and pw_dir fields if the unit file has a User= field. If the unit file does not have a User= field, the value substituted is either $USER or $HOME from the environment, or, if unset, the values from pw_name or pw_dir. This patch is somewhat after Ran Benita's original patch, which didn't get merged. I've split up the 2 specifiers and extended them to do what is logically expected from these specifiers. Note that expansion is done at `start` time, not after the units are parsed. Using `systemctl show` will just show the specifiers. | |||
2012-07-16 | util: add getusername_malloc(), get_shell(), get_home_dir() | Lennart Poettering | |
2012-07-16 | Spelling fixes. | Ville Skyttä | |
2012-07-15 | udev: get rid of TEST_PREFIX and use unshare() to fake /sys, /dev, /run | Kay Sievers | |