From 2533464aa60f08ad622a9384346f46ba79240ad4 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Mon, 3 Aug 2020 20:53:02 +0200 Subject: [PATCH] Replaces single export function/alias methods to include everything --- icinga-powershell-framework.psd1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icinga-powershell-framework.psd1 b/icinga-powershell-framework.psd1 index 09b8606..6c79f99 100644 --- a/icinga-powershell-framework.psd1 +++ b/icinga-powershell-framework.psd1 @@ -7,10 +7,10 @@ Copyright = '(c) 2020 Icinga GmbH | MIT' Description = 'Icinga for Windows module which allows to entirely monitor the Windows Host system.' PowerShellVersion = '4.0' - FunctionsToExport = @( 'Use-Icinga', 'Invoke-IcingaCommand', 'Import-IcingaLib', 'Publish-IcingaModuleManifests', 'Publish-IcingaEventlogDocumentation', 'Get-IcingaPluginDir', 'Get-IcingaCustomPluginDir', 'Get-IcingaCacheDir', 'Get-IcingaPowerShellConfigDir', 'Get-IcingaFrameworkRootPath', 'Get-IcingaPowerShellModuleFile' ) + FunctionsToExport = @( '*' ) CmdletsToExport = @() VariablesToExport = '*' - AliasesToExport = @( 'icinga' ) + AliasesToExport = @( '*' ) PrivateData = @{ PSData = @{ Tags = @( 'icinga','icinga2','IcingaPowerShellFramework','IcingaPowerShell','IcingaforWindows','IcingaWindows')