N°9144 - fix broken fresh install

This commit is contained in:
odain
2026-04-20 15:44:09 +02:00
parent 423807d32a
commit dc8f186443
5 changed files with 42 additions and 29 deletions

View File

@@ -84,7 +84,7 @@ class ApplicationInstallSequencer extends StepSequencer
$sDestination = $aBackupOptions['destination'];
$sSourceConfigFile = $aBackupOptions['configuration_file'];
$sMySQLBinDir = $this->oParams->Get('mysql_bindir', null);
$this->oRunTimeEnvironment->Backup($this->oConfig, $sDestination, $sSourceConfigFile, $sMySQLBinDir);
$this->oRunTimeEnvironment->Backup($this->GetConfig(), $sDestination, $sSourceConfigFile, $sMySQLBinDir);
}
return $this->ComputeNextStep($sStep);
@@ -176,8 +176,6 @@ class ApplicationInstallSequencer extends StepSequencer
$this->oRunTimeEnvironment->UpdateDBSchema($oConfig, $sMode, $aSelectedModules);
$oConfig->Set('access_mode', ACCESS_FULL);
$this->oRunTimeEnvironment->SetDbUUID();
SetupLog::Info("Database Schema Successfully Updated for environment '$sTargetEnvironment'.");