forked from Icinga/icinga-powershell-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicinga-powershell-cluster.psd1
43 lines (42 loc) · 1.73 KB
/
icinga-powershell-cluster.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@{
ModuleVersion = '1.4.0'
GUID = 'e224db78-5f9a-43ea-a985-911da9da70c8'
Author = 'Yonas Habteab'
CompanyName = 'Icinga GmbH'
Copyright = '(c) 2020 Icinga GmbH | GPL v2.0'
Description = 'A collection of Cluster plugins for the Icinga Powershell Framework'
PowerShellVersion = '4.0'
RequiredModules = @(
@{ModuleName = 'icinga-powershell-framework'; ModuleVersion = '1.10.0' },
@{ModuleName = 'icinga-powershell-plugins'; ModuleVersion = '1.10.0' }
)
NestedModules = @(
'.\compiled\icinga-powershell-cluster.ifw_compilation.psm1'
)
FunctionsToExport = @(
'Import-IcingaPowerShellComponentCluster',
'Invoke-IcingaCheckClusterHealth',
'Invoke-IcingaCheckClusterNetwork',
'Invoke-IcingaCheckClusterSharedVolume',
'Get-IcingaClusterSharedVolumeData'
)
CmdletsToExport = @(
)
VariablesToExport = @(
'ClusterProviderEnums'
)
PrivateData = @{
PSData = @{
Tags = @('icinga', 'icinga2', 'icingawindows', 'cluster', 'hyperv', 'clusterPlugins', 'windowsplugins', 'icingaforwindows')
LicenseUri = 'https://github.com/Icinga/icinga-powershell-cluster/blob/master/LICENSE'
ProjectUri = 'https://github.com/Icinga/icinga-powershell-cluster'
ReleaseNotes = 'https://github.com/Icinga/icinga-powershell-cluster/releases'
};
Version = 'v1.4.0'
Name = 'Windows Cluster';
Type = 'plugins';
Function = '';
Endpoint = '';
}
HelpInfoURI = 'https://github.com/Icinga/icinga-powershell-cluster'
}