systemd:revert-28429-ppc64_72

Last commit made on 2023-07-18
Get this branch:
git clone -b revert-28429-ppc64_72 https://git.launchpad.net/systemd

Branch merges

Branch information

Name:
revert-28429-ppc64_72
Repository:
lp:systemd

Recent commits

1a4a8ab... by Yu Watanabe <email address hidden>

Revert "test: exit early from TEST-70-TPM2 on ppc64el"

This reverts commit cc037f2b4851e1f143d71f25ed78c1cc6b70b9ad.

cc037f2... by Luca Boccassi

test: exit early from TEST-70-TPM2 on ppc64el

There is an underlying issue that appears only on ppc64 and fails 95%
of Ubuntu runs, so exit early until it is solved.

Closes https://github.com/systemd/systemd/issues/27716

c4b167f... by Frantisek Sumsal <email address hidden>

ci: drop super-linter's shellcheck

It's been a while since we introduced Differential ShellCheck and it
proved to be quite useful (and in some ways even better than the shellcheck
run by super-linter). So, to have only one linter scream at us for not
knowing how to write bash properly, let's drop the super-linter's one in
favor of Differential ShellCheck.

Follow-up for https://github.com/systemd/systemd/pull/24328#pullrequestreview-1074127504

ed5ce9a... by Zbigniew Jędrzejewski-Szmek

Merge pull request #28384 from ldv-alt/ERRNO_IS

treewide: fix use of ERRNO_IS_*(r)

f2aaa14... by Daan De Meyer

units: Add --graceful flag to pcrphase units

Some of the new units using systemd-pcrphase are missing the --graceful
flag which causes them to error if the tpm libraries are not installed.
Add --graceful just like in the other pcrphase units to make systemd-pcrphase
exit gracefully if the tpm libraries are missing.

70875a4... by Luca Boccassi

Merge pull request #28425 from weblate/weblate-systemd-master

Translations update from Fedora Weblate

cd69984... by Luna Jernberg <email address hidden>

po: Translated using Weblate (Swedish)

Currently translated at 100.0% (227 of 227 strings)

Co-authored-by: Luna Jernberg <email address hidden>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/sv/
Translation: systemd/main

e5e45bb... by =?utf-8?b?6rmA7J247IiY?= <email address hidden>

po: Translated using Weblate (Korean)

Currently translated at 100.0% (227 of 227 strings)

Co-authored-by: 김인수 <email address hidden>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/ko/
Translation: systemd/main

dd1674f... by Pavel Borecki

po: Translated using Weblate (Czech)

Currently translated at 93.3% (212 of 227 strings)

Co-authored-by: Pavel Borecki <email address hidden>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/cs/
Translation: systemd/main

fce846e... by "Dmitry V. Levin" <email address hidden>

test: fix use of ERRNO_IS_PRIVILEGE()

Given that ERRNO_IS_PRIVILEGE() also matches positive values,
make sure this macro is not called with arguments that do not have
errno semantics.

In this case the arguments passed to ERRNO_IS_PRIVILEGE() are the values
returned by read_one_line_file() which can legitimately return positive
values without errno semantics, so fix this by moving ERRNO_IS_PRIVILEGE()
invocations to the branches where the return values are known to be negative.