summaryrefslogtreecommitdiffstats
path: root/units/systemd-growfs-root.service.in (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-11-22journal: sync immediately on shutting down journaldYu Watanabe1-0/+6
Otherwise, sd_event_add_time_relative() or sd_event_source_set_time_relative() below will trigger assert_return(). Prompted by #30029.
2023-11-22core: serialize and deserialize trigger ratelimits for socket and pathZbigniew Jędrzejewski-Szmek2-2/+12
2023-11-22core: use uniform style for RateLimit initializationZbigniew Jędrzejewski-Szmek5-14/+8
RateLimit is designed so that we can always initialize only the first two fields explicitly. All other call sites use a single line for this.
2023-11-22core: serialize and deserialize auto start/stop ratelimitZbigniew Jędrzejewski-Szmek1-0/+4
The limit is not configurable, so the logic in the helper will always update the counters. The helper is a bit overkill, but it doesn't really matter.
2023-11-22core: serialize and deserialize unit start ratelimitsZbigniew Jędrzejewski-Szmek3-0/+12
The logic is taken from dump ratelimit: if the config changes, we discard the counters. This allows the user apply new limits and "start from scratch" in that case. This actually makes StartLimitIntervalSec=infinity (or with a large interval) work as expected, because the counter is maintained even if daemon-reload operations are interleaved.
2023-11-22update TODOLennart Poettering1-4/+5
2023-11-22po: Translated using Weblate (Hebrew)Yaron Shahrabani1-141/+146
Currently translated at 100.0% (227 of 227 strings) Co-authored-by: Yaron Shahrabani <sh.yaron@gmail.com> Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/he/ Translation: systemd/main
2023-11-22sd-journal: warn about seals may not be continuous only when the file is sealedYu Watanabe1-1/+1
Follow-up for e375bc5fcc080815ce849261eb505d084c2fde3e. Fixes #30118.
2023-11-22test: add test for draw_cylon()Yu Watanabe1-0/+28
2023-11-22pid1: move draw_cylong() to pretty-print.[ch]Yu Watanabe3-38/+41
2023-11-22pid1: terminate cylon stringYu Watanabe1-1/+3
Fixes #30121.
2023-11-22test: make sure pcrlock tests run headlessLennart Poettering1-3/+3
We want the tests to fail rather than hang if unlock via tpm doesn't work.
2023-11-22Update 60-autosuspend.hwdb (#30131)linuxlion1-0/+10
* Update 60-autosuspend.hwdb Framework provides expansion cards. For the HDMI and DisplayPort, these benefit power management via enabling auto suspend.
2023-11-22pid1: drop unnecessary spaceYu Watanabe1-1/+1
2023-11-21test-network: add tests for [DHCPv4] AllowList= and DenyList=Yu Watanabe4-3/+59
We have not tested if the settings actually filter DHCP servers. Let's add a test case for the settings. Note, the .network file used here has been unused since 0730e3767d91e020985dc5c7c2178460f627581a. So, we can freely reuse it without changing other test cases. Closes #30107.
2023-11-21network/dhcp: disable RapidCommit= by default when AllowList=/DenyList= is ↵Yu Watanabe5-4/+18
specified AllowList= and DenyList= filter only DHCPOFFER messages. So, if RapidCommit= is enabled, then networkd unconditionally accepts a rapid ACK message even if its sender is filtered out by the lists. As AllowList=/DenyList= implemented earlier than RapidCommit=, so enabling RapidCommit= unconditionally by default may break existing setups that use AllowList=/DenyList=. Let's disable RapidCommit= by default when AllowList=/DenyList= is enabled. Still the setting can be enabled by setting explicitly even AllowList=/DenyList= is also specified.
2023-11-21man: [DHCPv4] RapidCommit= is disabled when Anonymize=yesYu Watanabe1-0/+1
2023-11-21systemctl: fix typoYu Watanabe1-1/+1
Follow-up for f380473edfa899706d630bb64750ab50c5c04961.
2023-11-21Fix references to ReadOnly=Nils K1-2/+2
PartitionReadOnly is not a valid property and ReadOnly was meant instead.
2023-11-21tpm2-util: rename json field "tpm2-pcrlock" → "tpm2_pcrlock"Lennart Poettering1-2/+2
We generally want to avoid to include dashes in json field names. We historically made a mistake there which is hard to fix. But for new fields, let's get this right. We already got it right for a bunch of new fields, hence also make sure to use underscores rather dashes for new additions. This field was added post v254, and since we didn't release since then, let's just rename it.
2023-11-21bsod: install the signal handler only just before we need itFrantisek Sumsal2-1/+15
Otherwise we might get stuck in sd_journal_wait(), since it handles EINTR internally. Resolves: #30084
2023-11-21po: Translated using Weblate (Hebrew)Yaron Shahrabani2-0/+1037
Currently translated at 37.0% (84 of 227 strings) po: Translated using Weblate (Hebrew) Currently translated at 15.8% (36 of 227 strings) po: Added translation using Weblate (Hebrew) Co-authored-by: Yaron Shahrabani <sh.yaron@gmail.com> Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/he/ Translation: systemd/main
2023-11-21kernel-install: do not resolve symlink in paths passed to pluginsYu Watanabe1-27/+50
When we resolve symlinks, paths (especially filenames) may be changed, but plugins may expect to see the kernel added under the name specified, not under the final name that the symlink chain resolves to. This makes symlinks in specified paths that passed to plugins are not resolved when neither --root nor --image specified. Fixes #29317.
2023-11-21systemd.pc: Keep support for rootprefix and root_prefix (#30115)Arian van Putten1-3/+8
* systemd.pc: Keep support for rootprefix and root_prefix We dropped support for split-usr in https://github.com/systemd/systemd/commit/b0d3095fd6cc1791a38f57a1982116b4475244ba but kept the `rootprefix` variable in meson but ignore it to make sure we do not break downstream builds that depend on systemd. This is fine because we had logic in our meson.build that rootprefix and prefix need to be the same when split-usr=false. However we never had this logic in our systemd.pc.in file. This leads to a nasty breaking problem downstream. Many packages [0,1,2] (there might be more!) rely on overriding rootprefix or root_prefix when calling pkg-config to configure where to install systemd units. This is because before split-usr we installed units in rootprefix. Setting prefix on the pkg-config file didn't work. Even when split-usr=false people had to set rootprefix to install units in the right position. E.g. they have a line like: systemdunitdir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir', pkgconfig_define: ['rootprefix', systemd_root_prefix]) With https://github.com/systemd/systemd/commit/b0d3095fd6cc1791a38f57a1982116b4475244ba landing This would mean all these downstream packages need to be patched to use `prefix` next to `rootprefix`. (Both need to be kept to keep backwards compat with using older versions of systemd). This puts a big burden on downstream packages. Instead we should not break the existing behaviour and keep the old behaviour of systemd.pc.in around. I've changed systemd.pc.in such that either setting prefix, rootprefix or root_prefix will all have the same effect. This way we do not break any downstream packages. - [0](https://github.com/fwupd/fwupd/blob/caa788b37ff34334d83debb047335fd12f3a7836/meson.build#L464) - [1](https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/blame/main/meson.build#L204) - [2](https://github.com/PipeWire/pipewire/blob/49cdb468c28ba366dbd08eef9cb6dbf2dea2a2e5/src/daemon/systemd/system/meson.build#L1)
2023-11-21systemctl-show: only show available memory if it was artifically limitedFlorian Schmaus1-3/+6
Systemd 255 changed the semantic of MemoryAvailable with 3565c709f587 ("cgroup: Fix MemoryAvailable= by considering physical memory"). If there is no artificial constraint, it will hold the amount of available physical memory, while it previously contained UINT64_MAX. While the change in MemoryAvailable's semantic is sensible, it causes `systemctl status` to always display the available physical memory. This creates a lot of noise, especially since systemd recently started to also show the "peak" memory. For example $ systemctl status foo … Memory: 3.9G (available: 21.2G peak: 5.4G) … However, while peak memory is a unit specific value, the available memory, when not derived from artificial memory limits, is a generic property that holds the same value for all units that are not under memory accounting constraints. Displaying it under those circumstances can therefore be considered being noisy. Before 3565c709f587 ("cgroup: Fix MemoryAvailable= by considering physical memory") "systemctl status" would only show the available memory if it was caused by a explicit memory limitation due to MemoryHigh or MemoryMax. This commit restores this behavior by supressing displaying the available memory if is is merely the available phyiscal memory. For example $ systemctl status foo … Memory: 3.9G (peak: 5.4G) … Fixes #30102.
2023-11-21TODO: register more mime typesLennart Poettering1-0/+6
2023-11-21in-addr: improve log message for e.g. [DHCPv4] AllowList=Yu Watanabe1-1/+2
Closes #30107.
2023-11-21man: correct version tags in systemd-vmspawnLuca Boccassi1-3/+3
We ended up merging some changes earlier Fixes https://github.com/systemd/systemd/issues/30091
2023-11-20packit: run tests on Fedora Rawhide via Testing FarmFrantisek Sumsal1-0/+8
Let's utilize the full power of Packit and run some tests with the just built RPMs. This makes use of the Fedora infrastructure provided by the Testing Farm project [0][1]. With the current configuration, the `tests` job runs tests from the Fedora tests repository [2] in a very similar fashion like Ubuntu CI does, just with different metadata all around it. ATTOW there are only two tests, which are wrappers around unit tests and integration tests; the latter one currently runs only nspawn-based tests, since there's no KVM on the test VMs, and, for now, I'd like to see how well the infra is going to manage our upstream traffic and how stable the whole thing is end up being before increasing the work load. [0] https://docs.testing-farm.io/Testing%20Farm/0.1/index.html [1] https://packit.dev/docs/configuration/upstream/tests [2] https://src.fedoraproject.org/tests/systemd
2023-11-20test: don't use ddebug() before it's definedFrantisek Sumsal1-1/+1
I'm pretty sure this is not the only case, but it's the one I recently noticed. Even though we call ddebug() from a function, that function is called before ddebug() is defined, resulting in the same issue as if we called just ddebug() in its place, i.e.: ..//test-functions: line 276: ddebug: command not found
2023-11-20test: move a couple of binaries to the BASICTOOLS arrayFrantisek Sumsal1-14/+14
As they're not optional.
2023-11-20test: support NO_BUILD=yes on FedoraFrantisek Sumsal1-6/+58
2023-11-20test: make the LOOKS_LIKE_* variables proper booleansFrantisek Sumsal1-25/+26
2023-11-20libsystemd-network: introduce triple_timestamp_from_cmsg()Yu Watanabe6-55/+34
Follow-up for 461ef3981f1a45150b6e2047bb3c789ac50ba3cf. This should fix compile error on x32 and riscv32.
2023-11-20test: add simple test case for invalid userspace log recordsLuca Boccassi1-0/+9
2023-11-20pcrlock: check for embedded NUL bytesLennart Poettering1-0/+5
2023-11-20pcrlock: make sure we don't choke on empty recordsLennart Poettering1-1/+5
Follow-up for a43427013949 CID#1523832
2023-11-20man: add note about journald forwarding being syncVito Caputo1-0/+9
This footgun should at least be documented, if there's not going to be a shortcut setting to establish the async `journalctl --follow` equivalent. Fixes: https://github.com/systemd/systemd/issues/2815
2023-11-20man: Fix example for systemd-runMartin Joerg1-1/+1
2023-11-20test-condition: skip group test during Debian package buildLuca Boccassi1-5/+8
The group names won't match in a package build chroot and the test might fail, skip it. https://buildd.debian.org/status/fetch.php?pkg=systemd&arch=hppa&ver=255%7Erc2-2&stamp=1700424353&raw=0
2023-11-20test: add test cases about plugin exit codeYu Watanabe1-0/+25
2023-11-20kernel-install: propagate failures in pluginsYu Watanabe1-9/+8
This fixes a regression introduced by 42551ea7e923bac5df12b20e3e735a487d38dcd5. In the shell script version, plugin failures are propagated to the caller. But after the commit, failures in plugins are logged, but never propagated as the exit code of the execution. Fixes #30087.
2023-11-19hwdb: add Predator PHN16-71onenowy1-0/+6
enable microphone mute, predator sense button and fix the keyboard backlight up button changes display brightness.
2023-11-18hibernate-util: if asked to bypass space check, accept the case when weMike Yuan1-2/+10
have no swap space at all But I shall still recommend https://chrisdown.name/2018/01/02/in-defence-of-swap.html to everyone ;-) Fixes #30083
2023-11-18hibernate-util: report no available swap as no enough swap spaceMike Yuan1-2/+2
Otherwise, ENOENT or ENXIO may be directly returned as error through bus. Should help to generate clearer error message for #30083.
2023-11-18network/dhcp: actually refuse to assign DHCP option when an invalid string ↵Yu Watanabe2-1/+8
is passed Prompted by #30029.
2023-11-18po: Translated using Weblate (Chinese (Simplified) (zh_CN))Charles Lee1-6/+7
Currently translated at 100.0% (227 of 227 strings) Co-authored-by: Charles Lee <lchopn@gmail.com> Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/zh_CN/ Translation: systemd/main
2023-11-18po: Update translation filesWeblate38-10031/+3666
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/ Translation: systemd/main
2023-11-18po: Translated using Weblate (Chinese (Simplified) (zh_CN))Charles Lee3-44/+52
Currently translated at 100.0% (227 of 227 strings) Co-authored-by: Charles Lee <lchopn@gmail.com> Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/zh_CN/ Translation: systemd/main
2023-11-17fuzz: always call fuzz_setup_logging()Yu Watanabe5-0/+10