Add a stage for configuring users

This commit is contained in:
Manuel Thalmann 2024-08-09 02:27:24 +02:00
parent a43f09dce4
commit f469bd6eb7

View file

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