From 48d0692f0fbe26fb7cc5529b2b3867a6bfcf3f47 Mon Sep 17 00:00:00 2001 From: "Panagiotis \"Ivory\" Vasilopoulos" Date: Wed, 27 Nov 2024 09:32:04 +0100 Subject: [PATCH] feat(uhyve): change mountpoint env var --- src/fs/uhyve.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/uhyve.rs b/src/fs/uhyve.rs index e71aeb4b46..d0bfde94a4 100644 --- a/src/fs/uhyve.rs +++ b/src/fs/uhyve.rs @@ -321,7 +321,7 @@ impl VfsNode for UhyveDirectory { pub(crate) fn init() { info!("Try to initialize uhyve filesystem"); if is_uhyve() { - let mount_point = hermit_var_or!("UHYVE_MOUNT", "/root").to_string(); + let mount_point = hermit_var_or!("UHYVE_MOUNTPOINT", "/root").to_string(); info!("Mounting uhyve filesystem at {}", mount_point); fs::FILESYSTEM .get()