From 40cced71f212aa215a6866fe943f848d5536c837 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Mon, 13 Sep 2021 15:42:48 +0200 Subject: [PATCH] Fixes IMC summary header from misleading title --- doc/100-General/10-Changelog.md | 1 + .../menu/installation/general/ConfigurationSummary.psm1 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/100-General/10-Changelog.md b/doc/100-General/10-Changelog.md index d13610e..9816c8c 100644 --- a/doc/100-General/10-Changelog.md +++ b/doc/100-General/10-Changelog.md @@ -25,6 +25,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic ### Enhancements * [#364](https://github.com/Icinga/icinga-powershell-framework/pull/364) Fixes a long lookup for the user table on environments with a large Active Directory +* [#370](https://github.com/Icinga/icinga-powershell-framework/issues/370) Fixes misleading IMC summary header, implying installation will start immediately on continue ## 1.6.0 (2021-09-07) diff --git a/lib/core/installer/menu/installation/general/ConfigurationSummary.psm1 b/lib/core/installer/menu/installation/general/ConfigurationSummary.psm1 index c9ed667..9e0754a 100644 --- a/lib/core/installer/menu/installation/general/ConfigurationSummary.psm1 +++ b/lib/core/installer/menu/installation/general/ConfigurationSummary.psm1 @@ -107,7 +107,7 @@ function Show-IcingaForWindowsInstallerConfigurationSummary() $global:Icinga.InstallWizard.DisplayAdvanced = $TRUE; Show-IcingaForWindowsInstallerMenu ` - -Header 'Please validate your configuration. Installation starts on continue:' ` + -Header 'Please validate your configuration. Installation or answer file/command export are available on next step:' ` -Entries $Entries ` -DefaultIndex 'c' ` -ContinueFunction 'Show-IcingaForWindowsInstallerMenuFinishInstaller' `