This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathPSAutoLab.psd1
51 lines (45 loc) · 4.41 KB
/
PSAutoLab.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
44
45
46
47
48
49
50
51
# Module manifest for module 'PSAutoLab'
#
@{
RootModule = 'PSAutoLab.psm1'
ModuleVersion = '5.1.0'
CompatiblePSEditions = @('Desktop')
GUID = 'b68f9460-9e54-4207-b385-8654ce78ca95'
Author = 'Pluralsight'
CompanyName = 'Pluralsight LLC'
Copyright = '(c) 2016-2024 Pluralsight LLC. All rights reserved.'
Description = 'This module contains the control scripts to build, snapshot and remove lab environments using DSC configurations and the Lability PowerShell module.'
PowerShellVersion = '5.1'
RequiredModules = @('Lability','Pester')
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
FormatsToProcess = @(
'formats\psautolabvm.format.ps1xml',
'formats\isotest.format.ps1xml',
'formats\psautolabsetting.format.ps1xml',
'formats\psautolabresource.format.ps1xml'
)
FunctionsToExport = @(
'Enable-Internet', 'Invoke-RefreshLab', 'Invoke-RunLab',
'Invoke-SetupLab', 'Invoke-ShutdownLab', 'Invoke-SnapshotLab',
'Invoke-UnAttendLab', 'Invoke-ValidateLab', 'Invoke-WipeLab',
'Invoke-SetupHost', 'Invoke-RefreshHost', 'Get-PSAutoLabSetting',
'Get-LabSnapshot', 'Update-Lab', 'Get-LabSummary', 'Test-LabDSCResource',
'Open-PSAutoLabHelp', 'Test-ISOImage','Invoke-PesterTest'
)
VariablesToExport = @()
AliasesToExport = @(
'Refresh-Lab', 'Run-Lab', 'Setup-Lab',
'Shutdown-Lab', 'Snapshot-Lab', 'Unattend-Lab',
'Validate-Lab', 'Wipe-Lab', 'Setup-Host', 'Refresh-Host','Run-Pester'
)
PrivateData = @{
PSData = @{
Tags = @('lability', 'lab', 'dsc', 'training', 'pluralsight')
LicenseUri = 'https://github.com/pluralsight/PS-AutoLab-Env/blob/master/LICENSE'
ProjectUri = 'https://github.com/pluralsight/PS-AutoLab-Env'
ReleaseNotes = 'https://github.com/pluralsight/PS-AutoLab-Env/blob/master/changelog.md'
#Prerelease = ""
} # End of PSData hashtable
} # End of PrivateData hashtable
}