Add a stage for configuring users

This commit is contained in:
Manuel Thalmann 2024-08-09 02:27:24 +02:00
parent e5e35772a0
commit 32784742c6

View file

@ -425,6 +425,9 @@ $null = New-Module {
}
([SetupStage]::CreateUser) {
Start-ValhallaUserSetup;
Set-Stage ([SetupStage]::ConfigureUser);
}
([SetupStage]::ConfigureUser) {
Set-IsFinished $true;
}
}