rpm-ostree/fix-compose-err.patch

27 lines
912 B
Diff
Raw Normal View History

2024-02-20 17:57:03 +08:00
From a0558cf0f93f9278301ad59c13081ae86a9bf72d Mon Sep 17 00:00:00 2001
From: chendexi <chendexi@kylinos.cn>
Date: Wed, 21 Feb 2024 10:36:06 +0800
Subject: [PATCH 1/2] fix-compose-err
---
rust/src/scripts.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/rust/src/scripts.rs b/rust/src/scripts.rs
index e597863..149389a 100644
--- a/rust/src/scripts.rs
+++ b/rust/src/scripts.rs
@@ -17,6 +17,9 @@ use phf::phf_set;
2022-10-10 11:25:36 +08:00
/// NOTE FOR GIT history: This list used to live in src/libpriv/rpmostree-script-gperf.gperf
static IGNORED_PKG_SCRIPTS: phf::Set<&'static str> = phf_set! {
2024-02-20 17:57:03 +08:00
"glibc.prein",
2022-10-10 11:25:36 +08:00
+ "glibc-common.posttrans",
+ "grub2-efi-x64.prein",
+ "grub2-efi-aa64.prein",
// We take over depmod/dracut etc. It's `kernel` in C7 and kernel-core in F25+
2023-02-23 15:22:15 +08:00
// XXX: we should probably change this to instead ignore based on the kernel virtual Provides
2024-02-20 17:57:03 +08:00
"kernel.posttrans",
--
2.25.1