Merge pull request #164 from Icinga:feature/adds_exit_on_windows_terminal_integration

Feature: Adds exit to Windows Terminal integration to close shell on exit

Adds exit after calling icinga on Windows Terminal integration to ensure the shell will close in case the Icinga shell is closed.
This commit is contained in:
Lord Hepipud 2020-11-23 16:41:58 +01:00 committed by GitHub
commit 0f445a3008
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -24,6 +24,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
* [#149](https://github.com/Icinga/icinga-powershell-framework/pull/149) Adds support to add Wmi permissions for a specific user and namespace with `Add-IcingaWmiPermissions`. In addition you can remove users from Wmi namespaces by using `Remove-IcingaWmiPermissions` * [#149](https://github.com/Icinga/icinga-powershell-framework/pull/149) Adds support to add Wmi permissions for a specific user and namespace with `Add-IcingaWmiPermissions`. In addition you can remove users from Wmi namespaces by using `Remove-IcingaWmiPermissions`
* [#155](https://github.com/Icinga/icinga-powershell-framework/pull/155) Adds support to write all objects collected by `Get-IcingaWindowsInformation` into the Windows EventLog in case the debug output for the Icinga PowerShell Framework is enabled. * [#155](https://github.com/Icinga/icinga-powershell-framework/pull/155) Adds support to write all objects collected by `Get-IcingaWindowsInformation` into the Windows EventLog in case the debug output for the Icinga PowerShell Framework is enabled.
* [#162](https://github.com/Icinga/icinga-powershell-framework/pull/162) Adds feature to test the length of plugin custom variables during config generation and throws error in case the total length is bigger than 64 digits, as imports into the Icinga Director by using baskets is not possible otherwise * [#162](https://github.com/Icinga/icinga-powershell-framework/pull/162) Adds feature to test the length of plugin custom variables during config generation and throws error in case the total length is bigger than 64 digits, as imports into the Icinga Director by using baskets is not possible otherwise
* [#164](https://github.com/Icinga/icinga-powershell-framework/pull/164) Adds `exit` after calling `icinga` on Windows Terminal integration to ensure the shell will close in case the Icinga shell is closed
### Bugfixes ### Bugfixes

View file

@ -16,7 +16,7 @@ To install the Icinga Shell as native shell in your Windows Terminal dropdown, s
"guid": "{fcd7a805-a41b-49f9-afee-9d17a2b76d42}", "guid": "{fcd7a805-a41b-49f9-afee-9d17a2b76d42}",
"name": "Icinga", "name": "Icinga",
"commandline" : "powershell.exe -noe -c \"&{ icinga }\"", "commandline" : "powershell.exe -noe -c \"&{ icinga; exit }\"",
"hidden": false, "hidden": false,
"icon" : "ms-appdata:///roaming/icingawhite.png", "icon" : "ms-appdata:///roaming/icingawhite.png",