Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
v4.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Jun 29, 2020
1 parent 59ac59f commit abac446
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
Binary file modified PSAutoLab.psd1
Binary file not shown.
3 changes: 3 additions & 0 deletions PSAutoLab.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ $ConfigurationPath = Join-Path -path $PSScriptRoot -ChildPath Configurations
#declare the currently supported version of Pester
#Pester v5 is incompatible with the current validation tests
$PesterVersion = "4.10.1"

#declare the currently supported version of Lability
$LabilityVersion = "0.19.1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,4 +500,4 @@ These are some of the items that are being considered for future updates:

A complete list of enhancements can be found in [Issues](https://github.com/pluralsight/PS-AutoLab-Env/issues).

Last Updated 2020-06-16 13:30:03Z UTC
Last Updated 2020-06-29 15:57:04Z UTC
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log for PSAutoLab

## 4.14.0

### Add

+ Restored variable definition for `$LabilityVersion` in the psm1 file.

### Change

+ Modified Lability commands in `Invoke-SetupHost` to use fully qualified command name.
+ Updated -WhatIf messages in `Invoke-Setup-Host`

### Delete

+ none

## 4.13.0

## Add
Expand Down
8 changes: 4 additions & 4 deletions functions/public.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -279,13 +279,13 @@ Function Invoke-SetupHost {
ResourcePath = "$DestinationPath\Resources"
}

Set-LabHostDefault @DirDef
Lability\Set-LabHostDefault @DirDef

$HostStatus = Test-LabHostConfiguration
$HostStatus = Lability\Test-LabHostConfiguration
If (-Not $HostStatus ) {
Microsoft.PowerShell.Utility\Write-Host -ForegroundColor Cyan "Starting to Initialize host and install Hyper-V"
if ($pscmdlet.shouldprocess($DirDef.ConfigurationPath)) {
Start-LabHostConfiguration -ErrorAction SilentlyContinue
if ($pscmdlet.shouldprocess($DirDef.ConfigurationPath,"Lability\Start-LabHostConfiguration")) {
Lability\Start-LabHostConfiguration -ErrorAction SilentlyContinue
}
}

Expand Down

0 comments on commit abac446

Please sign in to comment.