diff --git a/setup/unattended-install/unattended-install.php b/setup/unattended-install/unattended-install.php index d4e04dc0a..a89fdef0d 100644 --- a/setup/unattended-install/unattended-install.php +++ b/setup/unattended-install/unattended-install.php @@ -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;