Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-06-25 | hwdb: added accelerometer quirk for Aspire Switch 10 (sw5-011) | M0Rf30 | 1 | -0/+3 | |
2018-06-25 | core/manager: Make sure jobs statistics are not double after daemon-reload | Michal Koutný | 1 | -0/+2 | |
We add n_installed_jobs and n_failed_jobs to our inner state after deserialization. This is fine during daemon-reexec when we start with clear Manager (and some jobs possibly queued before deserialization), however, daemon-reload works with the same manager and adding the values would effectively double the counters. Reset the counters before we deserialize and add their values again. | |||||
2018-06-25 | man: SystemMaxUse= clarification in journald.conf(5) | Michal Koutný | 1 | -1/+5 | |
Similar semantics applies to {System,Runtime}MaxUse= as to {System,Runtime}MaxFiles=, i.e. active files aren't vacuumed and the limit is not thus strictly honored. | |||||
2018-06-25 | boot: do not assume the last character in cmdline is a newline | Zbigniew Jędrzejewski-Szmek | 1 | -6/+8 | |
Fixes #9401. | |||||
2018-06-25 | tmpfiles: specify access mode for /run/systemd/netif | Yu Watanabe | 1 | -3/+3 | |
This partially reverts 2af767729489f6baa98a2641b2007acab44ed353. As the directories are certainly readable and not-writable by non-privileged users. | |||||
2018-06-25 | network: fix log message | Yu Watanabe | 1 | -1/+1 | |
2018-06-25 | timesync: update log message | Yu Watanabe | 1 | -1/+1 | |
Fixes #9388. | |||||
2018-06-25 | timesync: changes type of drift_freq to int64_t | Yu Watanabe | 2 | -2/+2 | |
drift_freq is used for storing timex.freq, and is a 64bit integer. To support x32 ABI, this changes the type of drift_freq to int64_t. Fixes #9387. | |||||
2018-06-25 | hwdb: Fix secondary backslash on MSI GS65 laptop | Sandy | 1 | -0/+4 | |
The MSI GS65 Stealth Thin series laptop contains an extra physical backslash key next to the spacebar which does not yield the correct keycode. This pull request fixes the issue | |||||
2018-06-25 | Add resolution of Trust Flex Graphics Tablet to hwdb | RussianNeuroMancer | 1 | -0/+9 | |
Product: https://www.trust.com/en/product/21259-flex-design-tablet-black http://trust.com/21259 Support in libinput is already in place since libinput 1.11 release (I tested it) https://gitlab.freedesktop.org/libinput/libinput/issues/38 So only missing part is definition in hwdb. | |||||
2018-06-25 | docs: put LGTM on the list of QA tools and fix a couple typos | Evegeny Vereshchagin | 1 | -2/+6 | |
2018-06-25 | install: fix error handling in is_symlink_with_known_name() | Yu Watanabe | 1 | -1/+1 | |
2018-06-25 | portable: fix error handling | Yu Watanabe | 1 | -1/+1 | |
2018-06-25 | import: drop unnecessary condition | Yu Watanabe | 1 | -2/+1 | |
2018-06-25 | sd-dhcp: drop unnecessary condition | Yu Watanabe | 1 | -3/+2 | |
2018-06-25 | machine-pool: drop unnecessary condition | Yu Watanabe | 1 | -2/+1 | |
2018-06-25 | resolve: drop dead code | Yu Watanabe | 1 | -10/+6 | |
2018-06-25 | resolve: drop dead code | Yu Watanabe | 1 | -7/+2 | |
2018-06-25 | bootctl: drop dead code | Yu Watanabe | 1 | -12/+2 | |
2018-06-25 | journal: drop redundant condition | Yu Watanabe | 1 | -1/+1 | |
2018-06-25 | resolve: fix return value type of dns_answer_has_dname_for_cname() | Yu Watanabe | 2 | -3/+2 | |
2018-06-25 | resolve: dns_scope_network_good() does not returns negative errno | Yu Watanabe | 1 | -4/+1 | |
2018-06-25 | core/cgroup: drop unnecessary condition | Yu Watanabe | 1 | -1/+1 | |
2018-06-25 | bus-util: fix error handling | Yu Watanabe | 1 | -1/+1 | |
2018-06-25 | tree-wide: add multiple inclusion guard | Yu Watanabe | 9 | -0/+9 | |
2018-06-24 | meson: drop unused option | Yu Watanabe | 1 | -1/+0 | |
Follow-up for add384dd4d2b96db6ace5ad9c52b1dd7553ebec2. | |||||
2018-06-24 | core: drop unused log message | Yu Watanabe | 1 | -5/+1 | |
temporary_filesystem_add() does not parse mount options. | |||||
2018-06-23 | core: Actually use the resolved path for TemporaryFileSystem= (#9385) | YmrDtnJu | 1 | -1/+1 | |
The code already resolves specifiers using unit_full_printf() but then uses the unresolved version again for temporary_filesystem_add(). | |||||
2018-06-22 | tree-wide: drop copyright lines for more authors | Zbigniew Jędrzejewski-Szmek | 38 | -93/+0 | |
Acks in https://github.com/systemd/systemd/issues/9320. | |||||
2018-06-22 | meson: bump package and library versionv239 | Lennart Poettering | 1 | -3/+3 | |
2018-06-22 | final touches to NEWS | Lennart Poettering | 1 | -2/+2 | |
2018-06-22 | man: small fixups for systemd-boot(8) | Zbigniew Jędrzejewski-Szmek | 1 | -4/+4 | |
- "UEFI firmware" is a name, no need for an article - The specification is more than "recommendation" | |||||
2018-06-22 | man: correct the meaning of TimeoutStopSec= (#9325) | Jan Synacek | 1 | -6/+6 | |
Fixes: #9325 | |||||
2018-06-22 | tmpfile: do not specify mode and owner to /run/systemd/netif | Yu Watanabe | 1 | -3/+3 | |
Fixes #9369. | |||||
2018-06-21 | journalctl: handle inotify exhaustion nicer | Kevin Kuehler | 1 | -3/+5 | |
Instead of failing, log that inotify wds are exhausted and fallback to -n switch. Fixes #1296. | |||||
2018-06-21 | udev: exclude DRBD from block device ownership event locking | Roland Kammerer | 1 | -3/+13 | |
It does not make sense for udev to even open DRBD block devices (/dev/drbdX). It is on one hand not necessary as DRBD is controlled by something else in the stack (e.g., pacemaker), and it even can get cumbersome in various scenarios (e.g., DRBD9 auto-promote). Closes: #9371 Signed-off-by: Roland Kammerer <roland.kammerer@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com> | |||||
2018-06-21 | man: systemd.offline-updates: Document system-update-pre.target usage | Hans de Goede | 1 | -0/+11 | |
2018-06-21 | NEWS: mention 'timedatectl show' | Yu Watanabe | 1 | -3/+4 | |
2018-06-21 | bash-completion: support 'timedatectl show' | Yu Watanabe | 1 | -1/+1 | |
2018-06-21 | NEWS: mention %E | Zbigniew Jędrzejewski-Szmek | 1 | -2/+3 | |
2018-06-20 | core: explicitly trigger changing udev SYSTEMD_WANTS properties | Lennart Poettering | 2 | -5/+56 | |
This compensates for the unsynchronized reload cycles of systemd and udev: we manually trigger the deps listed in SYSTEMD_WANTS properties if they change for device units that are already up. That way all deps defined that way will be triggered at least once: the first time the unit goes up by the usual dependency logic, and if it already is up by the device.c specific logic. Fixes: #9323 | |||||
2018-06-20 | analyze: use _cleanup_ for freeing the manager object | Lennart Poettering | 1 | -14/+8 | |
2018-06-20 | analyze: use log_unit_error_errno()'s return value where we can | Lennart Poettering | 1 | -4/+2 | |
2018-06-20 | tree-wide: pass NULL arguments to manager_startup() directly, avoid ↵ | Lennart Poettering | 4 | -12/+4 | |
declaring unneeded variables | |||||
2018-06-20 | units: let's use two ExecStart= lines instead of ; | Lennart Poettering | 1 | -1/+2 | |
2018-06-20 | core: use fflush_and_check() where appropriate | Lennart Poettering | 1 | -2/+3 | |
2018-06-20 | update TODO | Lennart Poettering | 1 | -0/+4 | |
2018-06-20 | test-condition: extend tests to all ConditionSecurity= values | Zbigniew Jędrzejewski-Szmek | 1 | -4/+29 | |
Also print out what we detect, for manual verification. | |||||
2018-06-20 | NEWS: mention ConditionSecurity=uefi-secureboot | Zbigniew Jędrzejewski-Szmek | 1 | -0/+3 | |
Follow-up for be405b909e5d78b43e3af47e0d10cd84c714e2f3. | |||||
2018-06-20 | condition: add new conditon ConditionSecurity=uefi-secureboot | Lennart Poettering | 2 | -8/+9 | |
We have the detector call for this anyway, and it's useful for conditioning out dbxtool.service, hence let's add this tiny new option. |