You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2023. It is now read-only.
if ( $new_ip-eq$Config.virtualMachines[$i].testIp ) {
184
198
Write-Verbose-Message "$($Config.virtualMachines[$i].mountName) Network Address Status: Assigned to $($new_ip)"
185
199
}
186
200
else {
187
-
throw"$($Config.virtualMachines[$i].mountName) changing ip to $($Config.virtualMachines[$i].testIp) failed, exiting Build script. Previously live mounted VMs will continue running"
201
+
throw"$($Config.virtualMachines[$i].mountName) changing ip to $($Config.virtualMachines[$i].testIp) failed (is still $($newip)), exiting Build script. Previously live mounted VMs will continue running"
188
202
}
189
203
$i++
190
204
}
@@ -197,7 +211,16 @@ task LiveMountTest {
197
211
Write-Verbose-Message "$($Config.virtualMachines[$i].mountName) Test Status: Loading the following tests - $($Config.virtualMachines[$i].tasks)"-Verbose
198
212
# Keeping the guest credential value local since it may only apply to the individual virtual machine in some cases
199
213
# Not all tests will need a guest credential, but it's there in case required
214
+
# Try per vm guest credentials first
215
+
if ( Get-Variable-Name "$Config.virtualMachines[$i].guestCred"-ErrorAction SilentlyContinue ) {
0 commit comments