daemon: Move configs from /usr/lib to /usr/share to avoid path conflict with bin

This commit is contained in:
Vicki Pfau 2024-06-12 15:54:10 -07:00
parent 2410334c0b
commit f5b17330bc
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ impl DaemonContext for RootContext {
}
fn system_config_path(&self) -> Result<PathBuf> {
Ok(path("/usr/lib/steamos-manager/system.d"))
Ok(path("/usr/share/steamos-manager/system.d"))
}
fn state(&self) -> RootState {

View file

@ -58,7 +58,7 @@ impl DaemonContext for UserContext {
}
fn system_config_path(&self) -> Result<PathBuf> {
Ok(path("/usr/lib/steamos-manager/user.d"))
Ok(path("/usr/share/steamos-manager/user.d"))
}
fn state(&self) -> UserState {