-
Notifications
You must be signed in to change notification settings - Fork 0
/
ResourceLocker.psd1
29 lines (29 loc) · 1.01 KB
/
ResourceLocker.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
@{
RootModule = 'ResourceLocker.psm1'
ModuleVersion = '1.1.0'
GUID = 'd8b0a333-adf5-4969-a084-bdca923a56b9'
Author = 'Kirill Nikolaev'
CompanyName = 'Fozzy Inc.'
Copyright = '(c) 2018 Fozzy Inc. All rights reserved.'
PowerShellVersion = '3.0'
Description = 'A network host synchronization framework that helps to prevent unexpected downtime during maintenance.'
FunctionsToExport = @(
'Get-ResourceDependence'
'Get-ResourceLockId'
'Lock-FileResource'
'Lock-HostResource'
'Lock-Resource'
'Test-HostResourceLock'
'Unlock-Resource'
)
CmdletsToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @()
LicenseUri = 'https://github.com/FozzyHosting/ResourceLocker/blob/master/LICENSE'
ProjectUri = 'https://github.com/FozzyHosting/ResourceLocker/'
ReleaseNotes = ''
}
}
}