mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
18 lines
500 B
PowerShell
18 lines
500 B
PowerShell
<#
|
|
### Note ###
|
|
|
|
This file is shipping plain with Icinga for Windows for each version.
|
|
Once the module is loaded, this content will entirely be replaced with
|
|
all modules and components shipped by the Icinga PowerShell Framework.
|
|
|
|
Manually enabling the feature is no longer required.
|
|
#>
|
|
|
|
$Global:Icinga = @{
|
|
'RebuildCache' = $TRUE;
|
|
};
|
|
|
|
Write-IcingaFrameworkCodeCache;
|
|
|
|
Import-Module icinga-powershell-framework -Global -Force;
|
|
Import-Module icinga-powershell-framework -Force;
|