Add a stage for configuring users

This commit is contained in:
Manuel Thalmann 2024-08-09 02:27:24 +02:00
parent 6b7e30c035
commit 62af6e393c

View file

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