You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #478 from Icinga:fix/parent_connection_not_asking_for_ca_crt
Fix: Option "Connecting from parent system" is not asking for ca.crt
While using the IMC with the connection option "Connecting from parent system", the wizard is not asking for the location of the ca.crt, which is required in order to complete the Icinga Agent process and ensure the API feature can be enabled afterwards.
Before, the user had to manually configure this step, which required knowledge on how this process works for Icinga.
Copy file name to clipboardExpand all lines: doc/100-General/10-Changelog.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
14
14
### Bugfixes
15
15
16
16
*[#472](https://github.com/Icinga/icinga-powershell-framework/pull/472) Fixes random errors while dynamically compiling Add-Type code by now writing a DLL inside `cache/dll` for later usage
17
+
*[#478](https://github.com/Icinga/icinga-powershell-framework/pull/478) Fixes connection option "Connecting from parent system" which is not asking for ca.crt location
'Help'='Choose this option if the Icinga Agent should not or cannot connect to a parent Icinga node and only connections from a Master/Satellite are possible. This will open the Windows firewall for the chosen Icinga protocol port (default 5665). Certificate generation might require additional steps.';
'Help'='Choose this option if the Icinga Agent should not or cannot connect to a parent Icinga node and only connections from a Master/Satellite are possible. This will open the Windows firewall for the chosen Icinga protocol port (default 5665). Certificate generation requires to specify the location of the Icinga ca.crt, which is required to complete the setup process.';
25
25
},
26
26
@{
27
27
'Caption'='Connecting from both systems';
@@ -39,6 +39,22 @@ function Show-IcingaForWindowsInstallerMenuSelectConnection()
39
39
-ConfigElement `
40
40
-Automated:$Automated`
41
41
-Advanced:$Advanced;
42
+
43
+
# If we choose option 1 "Connecting from parent system", we require to ask the user for the
44
+
# location of the ca.crt, as otherwise the api feature will not be enabled. This section will
45
+
# ensure we are forwarded to the proper menu later on and certain options are defined for our
0 commit comments