From 3bdbdc4fd8eb7fd90502080554dcd1ee0e192921 Mon Sep 17 00:00:00 2001 From: Sean Klein Date: Wed, 20 Apr 2022 15:06:44 -0400 Subject: [PATCH] Make the Omicron configuration more durable (#952) Update the path from `/var/tmp/oxide` to `/var/oxide`. The install / uninstall tools are automatically handling cleaning out this directory, so it's safe to use a longer-lived directory. --- common/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/lib.rs b/common/src/lib.rs index 27ee00671a..c1c8a54f87 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -52,4 +52,4 @@ macro_rules! generate_logging_api { /// /// NOTE: Be careful when modifying this path - the installation tools will /// **remove the entire directory** to re-install/uninstall the system. -pub const OMICRON_CONFIG_PATH: &'static str = "/var/tmp/oxide"; +pub const OMICRON_CONFIG_PATH: &'static str = "/var/oxide";