Skip to content

Commit

Permalink
Install-Lab.ps1 - Minor grammar correction (#1641)
Browse files Browse the repository at this point in the history
* Install-Lab.ps1 - Minor grammar correction

Modified line 191 with a minor grammar modification.

* Update AzureVnetDnsServerInvalid.cs

Corrected typo on line 36
  • Loading branch information
KloudGeek committed May 27, 2024
1 parent 0162ea4 commit 0a41138
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AutomatedLabCore/functions/Core/Install-Lab.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@

if ($hostFileAddedEntries)
{
Write-ScreenInfo -Message "The hosts file has been added $hostFileAddedEntries records. Clean them up using 'Remove-Lab' or manually if needed" -Type Warning
Write-ScreenInfo -Message "The hosts file has been updated with $hostFileAddedEntries records. Clean them up using 'Remove-Lab' or manually if needed" -Type Warning
}

if ($script:data.Machines | Where-Object SkipDeployment -eq $false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public override IEnumerable<ValidationMessage> Validate()
if (!dcIpAddresses.Contains(ip))
yield return new ValidationMessage
{
Message = string.Format("The DNS server '{0}' configured on the VNet is propaply not the right one. Make sure you point to a DNS server inside the lab.", ip),
Message = string.Format("The DNS server '{0}' configured on the VNet is probably not the right one. Make sure you point to a DNS server inside the lab.", ip),
TargetObject = vnet.Name,
Type = MessageType.Warning
};
}
}
}
}
}
}

0 comments on commit 0a41138

Please sign in to comment.