From 0bf773a23cc152a2ed5e499dcf525e72a0c2765f Mon Sep 17 00:00:00 2001 From: odain Date: Thu, 11 Jun 2026 18:47:48 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B09454=20-=20fix=20unattended=20regression?= =?UTF-8?q?=20when=20fresh=20install=20and=20no=20conf=20yet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/unattended-install/InstallationFileService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unattended-install/InstallationFileService.php b/setup/unattended-install/InstallationFileService.php index 655fc56355..fe4959bff1 100644 --- a/setup/unattended-install/InstallationFileService.php +++ b/setup/unattended-install/InstallationFileService.php @@ -258,7 +258,7 @@ class InstallationFileService public function ProcessDefaultModules(): void { $sProductionModuleDir = APPROOT.'data/'.$this->sTargetEnvironment.'-modules/'; - $oConfig = new Config(APPCONF.$this->sTargetEnvironment.'/'.ITOP_CONFIG_FILE); + $oConfig = new Config(APPCONF.$this->sTargetEnvironment.'/'.ITOP_CONFIG_FILE, false); $aAvailableModules = $this->GetProductionEnv()->AnalyzeInstallation($oConfig, $this->GetExtraDirs());