From 8088fdc322f3a1a155eb2e36829be47b889f9926 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Fri, 17 Apr 2026 14:50:49 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B09514=20-=20End=20user=20device=20cannot?= =?UTF-8?q?=20be=20uninstalled?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/sequencers/StepSequencer.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup/sequencers/StepSequencer.php b/setup/sequencers/StepSequencer.php index 4a86f2c46..eef3431a3 100644 --- a/setup/sequencers/StepSequencer.php +++ b/setup/sequencers/StepSequencer.php @@ -169,7 +169,11 @@ abstract class StepSequencer $sTargetEnvironment = $this->oRunTimeEnvironment->GetBuildEnv(); $sConfigFile = APPCONF.$sTargetEnvironment.'/'.ITOP_CONFIG_FILE; try { - $this->oConfig = new Config($sConfigFile); + if (file_exists($sConfigFile)) { + $this->oConfig = new Config($sConfigFile); + } else { + $this->oConfig = new Config(); + } } catch (Exception $e) { SetupLog::Exception("Setup error", $e); throw $e;