Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/100-General/10-Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic

[Issues and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/38)

* [#835](https://github.com/Icinga/icinga-powershell-framework/pull/835) Fixes JEA compiler to always enforce a rebuild of the Framework to ensure integrity of JEA profiles

## 1.13.4 (tbd)

[Issues and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/42)
Expand Down
3 changes: 2 additions & 1 deletion lib/core/jea/Install-IcingaJeaProfile.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ function Install-IcingaJEAProfile()
}

Write-IcingaConsoleNotice 'Writing Icinga for Windows environment information as JEA profile';
Write-IcingaJEAProfile -RebuildFramework:$RebuildFramework -AllowScriptBlocks:$AllowScriptBlocks;
# Always rebuild the framework to ensure we have the latest configuration
Write-IcingaJEAProfile -RebuildFramework -AllowScriptBlocks:$AllowScriptBlocks;
Write-IcingaConsoleNotice 'Registering Icinga for Windows JEA profile';
Register-IcingaJEAProfile -IcingaUser $IcingaUser -TestEnv:$TestEnv -ConstrainedLanguage:$ConstrainedLanguage;
# We need to run the task renewal with our scheduled task to fix errors while using WinRM / SSH
Expand Down