We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dbadd2 commit 6ba94f7Copy full SHA for 6ba94f7
1 file changed
crates/lib/src/install.rs
@@ -1598,6 +1598,9 @@ async fn prepare_install(
1598
// In some cases we may create large files, and it's better not to have those
1599
// in our overlayfs.
1600
bootc_mount::ensure_mirrored_host_mount("/var/tmp")?;
1601
+ // udev state is required for running lsblk during install to-disk
1602
+ // see https://github.com/bootc-dev/bootc/pull/688
1603
+ bootc_mount::ensure_mirrored_host_mount("/run/udev")?;
1604
// We also always want /tmp to be a proper tmpfs on general principle.
1605
setup_tmp_mount()?;
1606
// Allocate a temporary directory we can use in various places to avoid
0 commit comments