From bf5eee00181c478da555d18bcf5d7c0a53a6a5c5 Mon Sep 17 00:00:00 2001 From: Omer Tuchfeld Date: Thu, 5 Sep 2024 14:40:31 +0200 Subject: [PATCH] test --- tests-integration/src/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()?;