diff --git a/tests-integration/src/install.rs b/tests-integration/src/install.rs index d04b4a6b..0fb1d2bf 100644 --- a/tests-integration/src/install.rs +++ b/tests-integration/src/install.rs @@ -26,7 +26,7 @@ pub(crate) const BASE_ARGS: &[&str] = &[ // Clear out and delete any ostree roots fn reset_root(sh: &Shell, image: &str) -> Result<()> { // Leverage bootc hidden wipe-ostree command to get rid of otherwise hard to delete files - cmd!(sh, "sudo {BASE_ARGS...} -v /ostree:/ostree {image} bootc state wipe-ostree").run()?; + cmd!(sh, "sudo {BASE_ARGS...} -v /ostree:/ostree -v /boot:/boot {image} bootc state wipe-ostree").run()?; // Now that the hard to delete files are gone, we can just rmrf the rest cmd!(sh, "sudo /bin/sh -c 'rm -rf /ostree/deploy/*'").run()?;