support/install_command.ps1 in mixlib-install-3.11.5 vs support/install_command.ps1 in mixlib-install-3.11.11
- old
+ new
@@ -63,11 +63,11 @@
elseif (($dsha256 = Get-SHA256 $path) -eq $sha256) { return $true }
else { return $false }
}
Function Install-Chef($msi, $chef_omnibus_root) {
- Log "Installing Chef Omnibus package $msi"
+ Log "Installing Chef package $msi"
$installingChef = $True
$installAttempts = 0
while ($installingChef) {
$installAttempts++
$result = $false
@@ -192,11 +192,11 @@
}
$chef_omnibus_root = Unresolve-Path $chef_omnibus_root
if (Check-UpdateChef $chef_omnibus_root $version) {
- Write-Host "-----> Installing Chef Omnibus ($pretty_version)"
+ Write-Host "-----> Installing Chef $pretty_version package"
if ($chef_metadata_url -ne $null) {
$url, $sha256 = Get-ChefMetadata "$chef_metadata_url"
} else {
$url = $chef_msi_url
$sha256 = $null
@@ -208,7 +208,7 @@
} else {
Download-Chef "$url" $sha256 $msi
}
Install-Chef $msi $chef_omnibus_root
} else {
- Write-Host "-----> Chef Omnibus installation detected ($pretty_version)"
+ Write-Host "-----> Chef installation detected ($pretty_version)"
}