From ce33839341f3420fca240ba07111a8f4ab00ec75 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 18 Jul 2024 14:58:42 -0400 Subject: [PATCH] boundimage: Use high level `deployment_fd` helper This keeps things even simpler, it's the same thing we're doing in `kargs.rs`. Signed-off-by: Colin Walters --- lib/src/boundimage.rs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/lib/src/boundimage.rs b/lib/src/boundimage.rs index 07c8f2c28..24119b95d 100644 --- a/lib/src/boundimage.rs +++ b/lib/src/boundimage.rs @@ -20,15 +20,9 @@ const BOUND_IMAGE_DIR: &str = "usr/lib/bootc-experimental/bound-images.d"; /// Given a deployment, pull all container images it references. pub(crate) fn pull_bound_images(sysroot: &SysrootLock, deployment: &Deployment) -> Result<()> { - let sysroot_fd = crate::utils::sysroot_fd(&sysroot); - let sysroot_fd = Dir::reopen_dir(&sysroot_fd)?; - let deployment_root_path = sysroot.deployment_dirpath(&deployment); - let deployment_root = &sysroot_fd.open_dir(&deployment_root_path)?; - - let bound_images = parse_spec_dir(&deployment_root, BOUND_IMAGE_DIR)?; - pull_images(deployment_root, bound_images)?; - - Ok(()) + let deployment_root = &crate::utils::deployment_fd(sysroot, deployment)?; + let bound_images = parse_spec_dir(deployment_root, BOUND_IMAGE_DIR)?; + pull_images(deployment_root, bound_images) } #[context("parse bound image spec dir")]