Fix inspection with duplicated root mountpoint resolves: RHEL-90170 Remove zfs-fuse (not used in RHEL) Remove file-devel dependency. Fix RHEL gating tests - These would always fail because libvirt doesn't start up after being installed. You would see errors like: libguestfs: opening libvirt handle: URI = qemu:///system, auth = default+wrapper, flags = 0 libvirt: XML-RPC error : Failed to connect socket to '/var/run/libvirt/virtqemud-sock': No such file or directory libguestfs: error: could not connect to libvirt (URI = qemu:///system): Failed to connect socket to '/var/run/libvirt/virtqemud-sock': No such file or directory [code=38 int1=2] (cherry picked from Fedora commit a1eed9c04c9e64cf24bc83a0da2cd6b05f7400c3)
28 lines
696 B
Diff
28 lines
696 B
Diff
From b3c5978cdf583fba4dfc36f5ebc4d7248b5b0bfb Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Tue, 13 May 2025 17:28:25 +0100
|
|
Subject: [PATCH] RHEL: appliance/init: Run depmod -a to rebuild kernel module
|
|
dependencies
|
|
|
|
---
|
|
appliance/init | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/appliance/init b/appliance/init
|
|
index 5d35a47dd..a3c5654ea 100755
|
|
--- a/appliance/init
|
|
+++ b/appliance/init
|
|
@@ -116,6 +116,9 @@ $UDEVD --daemon #--debug
|
|
udevadm trigger
|
|
udevadm settle --timeout=600
|
|
|
|
+# Recreate module dependencies (RHEL only)
|
|
+depmod -a
|
|
+
|
|
# Disk optimizations.
|
|
# Increase the SCSI timeout so we can read remote images.
|
|
shopt -s nullglob
|
|
--
|
|
2.47.1
|
|
|