icinga-powershell-framework/cache/framework_cache.psm1

19 lines
500 B
PowerShell
Raw Normal View History

2021-08-06 09:44:31 -04:00
<#
2021-08-17 04:25:37 -04:00
### Note ###
2021-08-06 09:44:31 -04:00
2021-08-17 04:25:37 -04:00
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.
2021-08-06 09:44:31 -04:00
2021-08-17 04:25:37 -04:00
Manually enabling the feature is no longer required.
2021-08-06 09:44:31 -04:00
#>
2021-08-17 04:25:37 -04:00
$Global:Icinga = @{
'RebuildCache' = $TRUE;
2021-08-06 09:44:31 -04:00
};
2021-08-17 04:25:37 -04:00
Write-IcingaFrameworkCodeCache;
2021-08-06 12:12:27 -04:00
Import-Module icinga-powershell-framework -Global -Force;
Import-Module icinga-powershell-framework -Force;