From f5b17330bc78c3d07f8ea2ed07480f8b9ef21c0f Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Wed, 12 Jun 2024 15:54:10 -0700 Subject: [PATCH] daemon: Move configs from /usr/lib to /usr/share to avoid path conflict with bin --- src/daemon/root.rs | 2 +- src/daemon/user.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daemon/root.rs b/src/daemon/root.rs index fb3c532..b073371 100644 --- a/src/daemon/root.rs +++ b/src/daemon/root.rs @@ -51,7 +51,7 @@ impl DaemonContext for RootContext { } fn system_config_path(&self) -> Result { - Ok(path("/usr/lib/steamos-manager/system.d")) + Ok(path("/usr/share/steamos-manager/system.d")) } fn state(&self) -> RootState { diff --git a/src/daemon/user.rs b/src/daemon/user.rs index f46de97..381e213 100644 --- a/src/daemon/user.rs +++ b/src/daemon/user.rs @@ -58,7 +58,7 @@ impl DaemonContext for UserContext { } fn system_config_path(&self) -> Result { - Ok(path("/usr/lib/steamos-manager/user.d")) + Ok(path("/usr/share/steamos-manager/user.d")) } fn state(&self) -> UserState {