Skip to content

Commit 6b38f27

Browse files
committed
Fixes ifw uninstaller to remove service binary
1 parent f923a9e commit 6b38f27

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/100-General/10-Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
4141
* [#459](https://github.com/Icinga/icinga-powershell-framework/pull/459) Fixes `Update-Icinga` which was not working to downgrade snapshot packages pack to release (**NOTE:** It can still happen that migrations of the `Framework` might break your environment. Not recommended in production environments for the `Framework` component)
4242
* [#460](https://github.com/Icinga/icinga-powershell-framework/issues/460) Fixes Icinga Agent installation over IMC and Director Self-Service, in case the Self-Service is configured to not install the Icinga Agent or the user manually set `Do not install Icinga Agent` inside the IMC, which results in most configurations not being applied to the Agent, in case it is already installed
4343
* [#461](https://github.com/Icinga/icinga-powershell-framework/issues/461) Fixes `Add-IcingaRepository` which now only overrides the `RemotePath` by using `-Force` instead of removing and adding the repository again, causing problems with installation orders over IMC for example
44+
* [#464](https://github.com/Icinga/icinga-powershell-framework/pull/464) Fixes Icinga for Windows uninstaller which did not remove the service binary for the PowerShell service
4445

4546
### Enhancements
4647

lib/core/framework/Uninstall-IcingaForWindows.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function Uninstall-IcingaForWindows()
6161
Unregister-IcingaEventLog;
6262
}
6363
Write-IcingaConsoleNotice 'Uninstalling Icinga for Windows service';
64-
Uninstall-IcingaForWindowsService | Out-Null;
64+
Uninstall-IcingaForWindowsService -RemoveFiles | Out-Null;
6565

6666
$HasErrors = $FALSE;
6767

0 commit comments

Comments
 (0)