summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | sd-login.h: correct spelling mistakes in commentsDave Reisner2011-10-11
| |
* | hostname-setup: Frugalware switched to /etc/hostnameMiklos Vajna2011-10-11
| |
* | readahead: lower max file size for readaheadPaolo Bonzini2011-10-11
| | | | | | | | https://bugs.freedesktop.org/show_bug.cgi?id=41336
* | man: .include directive does not include as textual include it includes by ↵Barry Scott2011-10-11
| | | | | | | | | | | | | | parsing the include file. This means that section headers must be used inside of a .include file otherwise all the lines are ignored.
* | man: for ExecStart= provide more details on env var substitution and how ↵Barry Scott2011-10-11
| | | | | | | | | | | | | | that turns into arguments. For EnvironmentFile= explain that double quotes can be used to protect whitespace.
* | update TODOLennart Poettering2011-10-11
| |
* | util: fix close() call on wrong variableThomas Jarosch2011-10-10
| | | | | | | | Detected by "cppcheck" (actually it detected a file descriptor leak)
* | tmpfiles: fix file descriptor leakThomas Jarosch2011-10-10
| | | | | | | | Detected by "cppcheck"
* | update TODOLennart Poettering2011-10-10
| |
* | test_virtualization: do not try to compare id in !virt contextKay Sievers2011-10-09
| |
* | update TODOKay Sievers2011-10-09
| |
* | update TODOLennart Poettering2011-10-07
| |
* | hashmap: use different version of DJB's hash algorithm that uses shifting ↵Lennart Poettering2011-10-07
| | | | | | | | instead of multiplication
* | update TODOLennart Poettering2011-10-07
| |
* | logind: properly generate session creation response on dbusLennart Poettering2011-10-04
| | | | | | | | | | This fixes the various reported issues with dbus message parsing when running su.
* | systemctl: fix corrupted output of unitsMichal Schmidt2011-09-29
| | | | | | | | | | | | | | | | | | | | | | 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.
* | localed: handle multiple X11 kbd layoutsLennart Poettering2011-09-29
| | | | | | | | https://bugs.freedesktop.org/show_bug.cgi?id=41341
* | systemctl: fix error message when no connection to systemd is availableLennart Poettering2011-09-29
| |
* | systemctl: fix detection whether the dbus connection is availableLennart Poettering2011-09-29
| |
* | build-sys: fix buildLennart Poettering2011-09-29
| |
* | vconsole: don't parse Fedora's KEYMAP= kernel parameters anymoreLennart Poettering2011-09-28
| | | | | | | | | | | | | | 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.
* | localed: add SetX11Keyboard() and SetVConsoleKeyboard() bus callsLennart Poettering2011-09-28
| |
* | analyze: always draw top kernel, initramfs, userspace barsKay Sievers2011-09-27
| | | | | | | | Based on Koen Kooi's patch. Renamed initrd to initramfs.
* | systemctl: better width and alignment of fieldsMichal Schmidt2011-09-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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'.
* | systemctl: print the legend regardless of stdout type, add --no-legendMichal Schmidt2011-09-27
| | | | | | | | | | | | | | | | | | | | 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
* | pager: add a trivial internal pagerMichal Schmidt2011-09-27
| | | | | | | | | | | | | | | | | | | | 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
* | build-sys: bump releaseLennart Poettering2011-09-23
| |
* | readahead: opt out of bridge logging for readahead in order not to delay ↵Lennart Poettering2011-09-23
| | | | | | | | things unnecessarily
* | service: fix up std output/error before we add dependencies to the bridge socketLennart Poettering2011-09-23
| |
* | virt: add missing header inclusionLennart Poettering2011-09-23
| |
* | condition: optionally test against type of virtualization (vm vs. container)Lennart Poettering2011-09-23
| |
* | util: move virtualization detection into its own files, and extend return codesLennart Poettering2011-09-23
| |
* | analyze: report startup time in plot mode as wellKoen Kooi2011-09-23
| | | | | | | | It now prints something like "Startup finished in 1507ms (kernel) + 850ms (userspace) = 2357ms" below the legend.
* | analyze: always draw 1s marker for scaleKoen Kooi2011-09-23
| | | | | | | | | | | | | | | | | | 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.
* | unit: fix complementing of requirement deps with After deps for targetsMichal Schmidt2011-09-23
| | | | | | | | | | | | | | | | | | | | '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.
* | util: don't fail if no id was passed to detect_container()Lennart Poettering2011-09-23
| |
* | util: detect systemd-nspawn without relying on ns cgroup treeLennart Poettering2011-09-23
| |
* | nspawn: set env var container=systemd-nspawn, following the scheme lxc ↵Lennart Poettering2011-09-23
| | | | | | | | introduced
* | loginctl: fix typoLennart Poettering2011-09-23
| |
* | llvm-analyze: change a few things to make llvm-analyze show fewer false ↵Lennart Poettering2011-09-23
| | | | | | | | positives
* | llvm-analyze: fix some bugs found by llvm-analyzeLennart Poettering2011-09-23
| |
* | util: improve signal_to_string, signal_from_stringMichal Schmidt2011-09-23
| | | | | | | | | | | | | | | | | | | | | | 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.
* | manager: fix job mode for SIGRTMIN+1, +2Michal Schmidt2011-09-23
| | | | | | | | The test did not work as intended and always resulted in JOB_REPLACE.
* | condition: fix reversed tests if path does not exist at allMichal Schmidt2011-09-23
| | | | | | | | | | | | 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.
* | coverity: change a few things so that coverity doesn't show so many false ↵Lennart Poettering2011-09-23
| | | | | | | | positives
* | coverity: fix a couple of bugs found by coverityLennart Poettering2011-09-23
| |
* | units: fix rescue.service race with plymouthMichal Schmidt2011-09-22
| | | | | | | | | | | | | | | | | | | | | | 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
* | man: document that PathChanged= does not care for simple writes but only for ↵Lennart Poettering2011-09-22
| | | | | | | | close()-after-write()
* | unit: don't recheck conditions when a unit is already starting but ↵Lennart Poettering2011-09-22
| | | | | | | | unit_start() is invoked
* | man: document pkg-config line for sd-daemonLennart Poettering2011-09-22
| |