From 0984cf0d0c672aea3ccbce9edac340e4f014bea1 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 16 Dec 2023 21:03:49 +0100 Subject: [PATCH] Make package database path configurable --- librepomgr/serversetup.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/librepomgr/serversetup.cpp b/librepomgr/serversetup.cpp index cc65e6e..4b3ab1e 100644 --- a/librepomgr/serversetup.cpp +++ b/librepomgr/serversetup.cpp @@ -488,6 +488,7 @@ void ServiceSetup::loadConfigFiles(bool doFirstTimeSetup) convertValue(iniEntry.second, "pacman_config_file_path", pacmanConfigFilePath); convertValue(iniEntry.second, "working_directory", workingDirectory); convertValue(iniEntry.second, "default_arch", defaultArch); + convertValue(iniEntry.second, "db_path", dbPath); convertValue(iniEntry.second, "max_dbs", maxDbs); convertValue(iniEntry.second, "package_cache_limit", packageCacheLimit); }