N°9144 - Fix unattended install

This commit is contained in:
Eric Espie
2026-04-02 16:10:46 +02:00
committed by odain
parent 8dca03f557
commit bcf2123df0

View File

@@ -272,8 +272,14 @@ $bFoundIssues = false;
$bInstall = utils::ReadParam('install', true, true /* CLI allowed */);
if ($bInstall) {
echo "Starting the unattended installation...\n";
$oWizard = new ApplicationInstallSequencer($oParams);
$oWizard = new DataAuditSequencer($oParams);
$bRes = $oWizard->ExecuteAllSteps();
if ($bRes) {
$oWizard = new ApplicationInstallSequencer($oParams);
$bRes = $oWizard->ExecuteAllSteps();
}
if (!$bRes) {
echo "\nencountered installation issues!";
$bFoundIssues = true;