Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2011-09-28 | vconsole: don't parse Fedora's KEYMAP= kernel parameters anymore | Lennart Poettering | |
KEYMAP are use to pass keymap configuration to initrd, but not to the system itself. Since the initrd might get out of date we need to make sure that changes made in userspace override the settings from the cmdline, hence drpo any use of it all for these variables. | |||
2011-09-28 | localed: add SetX11Keyboard() and SetVConsoleKeyboard() bus calls | Lennart Poettering | |
2011-09-27 | analyze: always draw top kernel, initramfs, userspace bars | Kay Sievers | |
Based on Koen Kooi's patch. Renamed initrd to initramfs. | |||
2011-09-27 | systemctl: better width and alignment of fields | Michal Schmidt | |
Provide nicer output by taking advantage of the available columns. Expand UNIT and DESCRIPTION if possible. Economize the space: - never give UNIT more width than it can use. - if there's a shortage of space, give 25 columns to UNIT, even if it would result in overflowing the total columns. The field would not be useful below width 25. - then if possible, assign up to 25 columns to DESCRIPTION. - then split any remaining space evenly between UNIT and DESCRIPTION. Keep the columns aligned even with '--full'. | |||
2011-09-27 | systemctl: print the legend regardless of stdout type, add --no-legend | Michal Schmidt | |
Print the legend (the column headers and the footer with hints) by default even to non-tty output. People seem to get confused by the difference when they redirect the output. Add a parameter to suppress the printing of the legend. Related-to: https://bugzilla.redhat.com/show_bug.cgi?id=713567 | |||
2011-09-27 | pager: add a trivial internal pager | Michal Schmidt | |
In the very unlikely scenario where none of the external pagers is available, use an internal implementation to pass stdin to stdout. Don't bother with trying 'cat', because it's no more useful than the internal pager. https://bugzilla.redhat.com/show_bug.cgi?id=713707 | |||
2011-09-23 | build-sys: bump releasesystemd/v36 | Lennart Poettering | |
2011-09-23 | readahead: opt out of bridge logging for readahead in order not to delay ↵ | Lennart Poettering | |
things unnecessarily | |||
2011-09-23 | service: fix up std output/error before we add dependencies to the bridge socket | Lennart Poettering | |
2011-09-23 | virt: add missing header inclusion | Lennart Poettering | |
2011-09-23 | condition: optionally test against type of virtualization (vm vs. container) | Lennart Poettering | |
2011-09-23 | util: move virtualization detection into its own files, and extend return codes | Lennart Poettering | |
2011-09-23 | analyze: report startup time in plot mode as well | Koen Kooi | |
It now prints something like "Startup finished in 1507ms (kernel) + 850ms (userspace) = 2357ms" below the legend. | |||
2011-09-23 | analyze: always draw 1s marker for scale | Koen Kooi | |
In situations like this: root@omap4430-panda:~# systemd-analyze Startup finished in 1499ms (kernel) + 916ms (userspace) = 2416ms The svg plot will only have the 0s marker and no subsequent markers for scale. This patch forces the 1s marker to always be drawn. | |||
2011-09-23 | unit: fix complementing of requirement deps with After deps for targets | Michal Schmidt | |
'man systemd.target' says: Unless DefaultDependencies= is set to false, target units will implicitly complement all configured dependencies of type Wants=, Requires=, RequiresOverridable= with dependencies of type After= if the units in question also have DefaultDependencies=true. It did not work because of a forgotten negation. | |||
2011-09-23 | util: don't fail if no id was passed to detect_container() | Lennart Poettering | |
2011-09-23 | util: detect systemd-nspawn without relying on ns cgroup tree | Lennart Poettering | |
2011-09-23 | nspawn: set env var container=systemd-nspawn, following the scheme lxc ↵ | Lennart Poettering | |
introduced | |||
2011-09-23 | loginctl: fix typo | Lennart Poettering | |
2011-09-23 | llvm-analyze: change a few things to make llvm-analyze show fewer false ↵ | Lennart Poettering | |
positives | |||
2011-09-23 | llvm-analyze: fix some bugs found by llvm-analyze | Lennart Poettering | |
2011-09-23 | util: improve signal_to_string, signal_from_string | Michal Schmidt | |
signal_to_string: Produce names for SIGRTMIN+n. Never give an "n/a" result. In the worst case give the number itself as a string. signal_from_string: Parse "RTMIN+n". Parse any valid signal number. | |||
2011-09-23 | manager: fix job mode for SIGRTMIN+1, +2 | Michal Schmidt | |
The test did not work as intended and always resulted in JOB_REPLACE. | |||
2011-09-23 | condition: fix reversed tests if path does not exist at all | Michal Schmidt | |
CONDITION_PATH_IS_DIRECTORY, CONDITION_PATH_IS_SYMBOLIC_LINK and CONDITION_FILE_IS_EXECUTABLE gave reversed results when the path did not exist at all. | |||
2011-09-23 | coverity: change a few things so that coverity doesn't show so many false ↵ | Lennart Poettering | |
positives | |||
2011-09-23 | coverity: fix a couple of bugs found by coverity | Lennart Poettering | |
2011-09-22 | units: fix rescue.service race with plymouth | Michal Schmidt | |
It was possible for the "ExecStartPre=-/bin/plymouth quit" to race with plymouth-start.service which is pulled in indirectly by basic.target -> sysinit.target. The race left plymouth running on the terminal, making it unusable for rescue purposes. https://bugzilla.redhat.com/show_bug.cgi?id=710487 | |||
2011-09-22 | man: document that PathChanged= does not care for simple writes but only for ↵ | Lennart Poettering | |
close()-after-write() | |||
2011-09-22 | unit: don't recheck conditions when a unit is already starting but ↵ | Lennart Poettering | |
unit_start() is invoked | |||
2011-09-22 | man: document pkg-config line for sd-daemon | Lennart Poettering | |
2011-09-22 | man: document that sd-daemon.[ch] is now available as shared library | Lennart Poettering | |
2011-09-22 | service: warn if a service fails to write its PID file | Michal Schmidt | |
Warn if a service promises to write a PID file (using 'PIDFile=' in the unit file or '# pidfile:' in SysV header), but fails to keep the promise. This warning will likely trigger also for the forking services with a racy daemonization, which exit the original process before the PID file is written. | |||
2011-09-22 | update TODO | Lennart Poettering | |
2011-09-22 | selinux: reopen log when loading the SELinux policy fails | Lennart Poettering | |
2011-09-22 | service: if StandardInput=socket and StandardOutput=inherit imply socket for ↵ | Lennart Poettering | |
output, don't imply default output This is useful for inetd-style per-connection services, so that they again can simply specify StandardOutput=socket to connect all three fds to the socket. | |||
2011-09-22 | udev: asynchronously mount fuse/confifgs as soon as the kmods are loaded | Lennart Poettering | |
2011-09-22 | units: introduce unit file for FUSE fs | Lennart Poettering | |
FUSE and configfs is very very similar, so handle both the same way. | |||
2011-09-21 | units: In MeeGo there was more than one ExecStart lines present that caused ↵ | Marko Saukko | |
systemd to refuse the rescue.service |