From fb775e85a4563a063daaf87cdf510e1d46647294 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 30 Oct 2021 23:16:20 +0200 Subject: runner: do not use tmpfs for temporary build directories --- crates/runner/src/init.rs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'crates/runner/src/init.rs') diff --git a/crates/runner/src/init.rs b/crates/runner/src/init.rs index b2ebbe3..07631ea 100644 --- a/crates/runner/src/init.rs +++ b/crates/runner/src/init.rs @@ -54,16 +54,18 @@ pub fn init_runner() -> Result<()> { fs::mkdir(paths::LAYER_STATE_DIR)?; fs::mkdir(paths::OUTPUT_STATE_DIR)?; - mount::mount::<_, _, _, str>( - Some("buildtmp"), + fs::ensure_removed(paths::TMP_DIR)?; + fs::mkdir(paths::TMP_DIR)?; + mount::mount::<_, _, str, str>( + Some(paths::TMP_DIR), paths::TMP_DIR, - Some("tmpfs"), - MsFlags::empty(), + None, + MsFlags::MS_BIND, None, ) - .context("Mounting build tmpfs failed")?; + .context("Failed to bind mount build tmpdir")?; mount::mount::(None, paths::TMP_DIR, None, MsFlags::MS_PRIVATE, None) - .context("Failed to set MS_PRIVATE for build tmpfs")?; + .context("Failed to set MS_PRIVATE for build tmpdir")?; prepare_rootfs(paths::ROOTFS_DIR)?; -- cgit v1.2.3