Skip to content

Commit ce03447

Browse files
authored
Merge pull request #703 from Icinga:fix/ifw_managed_user_pass_handling
Fix: Icinga for Windows managed user password handling Fixes Icinga for Windows password management for the managed user `icinga`, which could fail in some cases because of ambiguous characters or complexity errors and will now retry up to 10 times before giving up
2 parents f636b98 + 877d236 commit ce03447

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

doc/100-General/10-Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
2020
* [#685](https://github.com/Icinga/icinga-powershell-framework/pull/685) Fixes an issue while trying to stop the JEA process in certain cases, which results in an error during installation but has no other effect on the environment
2121
* [#686](https://github.com/Icinga/icinga-powershell-framework/pull/686) Fixes certutil error handling and message output in case the icingaforwindows.pfx could not be created
2222
* [#687](https://github.com/Icinga/icinga-powershell-framework/pull/687) Fixes Icinga for Windows port handling on installation, which will now use the proper defined port for communicating with the Icinga CA
23+
* [#699](https://github.com/Icinga/icinga-powershell-framework/issues/699) Fixes Icinga for Windows password management for the managed user `icinga`, which could fail in some cases because of ambiguous characters or complexity errors and will now retry up to 10 times before giving up
2324
* [#702](https://github.com/Icinga/icinga-powershell-framework/pull/702) Fixes an issue with Icinga Director Self-Service API, which ignored the defined service user
2425

2526
### Enhancements

lib/core/windows/Get-IcingaRandomChars.psm1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ function Get-IcingaRandomChars()
22
{
33
param (
44
[int]$Count = 10,
5-
[string]$Symbols = 'abcdefghiklmnoprstuvwxyzABCDEFGHKLMNOPRSTUVWXYZ1234567890!§$%&/()=?}][{@#*+'
5+
[string]$Symbols = 'abcdefghiklmnoprstuvwxyzABCDEFGHKLMNOPRSTUVWXYZ1234567890!§$%()=?}][{@#*+'
66
);
77

88
$RandomChars = '';

lib/core/windows/New-IcingaWindowsUser.psm1

+15-3
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,29 @@ function New-IcingaWindowsUser()
3333

3434
# User already exist -> override password - but only if the user is entirely managed by Icinga
3535
if ($UserConfig.IcingaManagedUser) {
36-
$Result = Start-IcingaProcess -Executable 'net' -Arguments ([string]::Format('user "{0}" "{1}"', $IcingaUser, (ConvertFrom-IcingaSecureString -SecureString (New-IcingaWindowsUserPassword))));
36+
# In case the password set fails, we need to try again
37+
[int]$Attempts = 0;
38+
[bool]$Success = $FALSE;
3739

38-
if ($Result.ExitCode -ne 0) {
40+
while ($Attempts -lt 10) {
41+
$Result = Start-IcingaProcess -Executable 'net' -Arguments ([string]::Format('user "{0}" "{1}"', $IcingaUser, (ConvertFrom-IcingaSecureString -SecureString (New-IcingaWindowsUserPassword))));
42+
43+
if ($Result.ExitCode -eq 0) {
44+
$Success = $TRUE;
45+
break;
46+
}
47+
48+
$Attempts += 1;
49+
}
50+
51+
if ($Success -eq $FALSE) {
3952
Write-IcingaConsoleError 'Failed to update password for user "{0}": {1}' -Objects $IcingaUser, $Result.Error;
4053

4154
return @{
4255
'User' = $UserConfig.Caption;
4356
'SID' = $UserConfig.SID;
4457
};
4558
}
46-
4759
Write-IcingaConsoleNotice 'User updated successfully.';
4860
} else {
4961
Write-IcingaConsoleWarning 'User "{0}" is not managed by Icinga for Windows. No changes were made.' -Objects $IcingaUser;

0 commit comments

Comments
 (0)