From 84982bf1b680abd612407c71b90f8cd625ca50e2 Mon Sep 17 00:00:00 2001 From: Flatcar Buildbot Date: Mon, 23 Mar 2026 07:35:37 +0000 Subject: [PATCH] eclass/tmpfiles: Sync with Gentoo It's from Gentoo commit 95aa07e20e071fec2756dca82171fa2898626ea3. Signed-off-by: Flatcar Buildbot --- .../src/third_party/portage-stable/eclass/tmpfiles.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/portage-stable/eclass/tmpfiles.eclass b/sdk_container/src/third_party/portage-stable/eclass/tmpfiles.eclass index f543eaf4eb..ef73b3b87b 100644 --- a/sdk_container/src/third_party/portage-stable/eclass/tmpfiles.eclass +++ b/sdk_container/src/third_party/portage-stable/eclass/tmpfiles.eclass @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Gentoo Authors +# Copyright 2016-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: tmpfiles.eclass @@ -139,6 +139,8 @@ tmpfiles_process() { systemd-tmpfiles --create "$@" elif type tmpfiles &> /dev/null; then tmpfiles --create "$@" + elif type seedfiles &> /dev/null; then + seedfiles --create "$@" fi if [[ $? -ne 0 ]]; then ewarn "The tmpfiles processor exited with a non-zero exit code"