33 lines
786 B
PowerShell
Executable File
33 lines
786 B
PowerShell
Executable File
Set-StrictMode -Version latest
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
# Force TLS1.2
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
|
|
|
Set-Location C:\opt
|
|
|
|
Try {
|
|
$releases = "https://releases.hashicorp.com"
|
|
$version = "1.7.3"
|
|
$url = "${releases}/consul/${version}/consul_${version}_windows_amd64.zip"
|
|
|
|
$configDir = "C:\opt\consul.d"
|
|
md $configDir
|
|
md C:\opt\consul
|
|
|
|
# TODO: check sha!
|
|
Write-Output "Downloading Consul from: $url"
|
|
Invoke-WebRequest -Uri $url -Outfile consul.zip
|
|
Expand-Archive .\consul.zip .\
|
|
mv consul.exe C:\opt\consul.exe
|
|
C:\opt\consul.exe version
|
|
rm consul.zip
|
|
|
|
} Catch {
|
|
Write-Error "Failed to install Consul."
|
|
$host.SetShouldExit(-1)
|
|
throw
|
|
}
|
|
|
|
Write-Output "Installed Consul."
|