From c8a18fda269d972f389edd88b84b95777f00e52b Mon Sep 17 00:00:00 2001 From: Seth Miller Date: Wed, 18 Nov 2015 21:55:32 -0600 Subject: [PATCH] Fixing the Salt bootstrap script for Windows The URL for the download has changed as per issue #6274 --- plugins/provisioners/salt/bootstrap-salt.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/provisioners/salt/bootstrap-salt.ps1 b/plugins/provisioners/salt/bootstrap-salt.ps1 index 78f268ea3..0ed06f7eb 100644 --- a/plugins/provisioners/salt/bootstrap-salt.ps1 +++ b/plugins/provisioners/salt/bootstrap-salt.ps1 @@ -51,7 +51,7 @@ If ([IntPtr]::Size -eq 4) { # Download minion setup file Write-Host "Downloading Salt minion installer Salt-Minion-$version-$arch-Setup.exe" $webclient = New-Object System.Net.WebClient -$url = "https://docs.saltstack.com/downloads/Salt-Minion-$version-$arch-Setup.exe" +$url = "https://repo.saltstack.com/windows/Salt-Minion-$version-$arch-Setup.exe" $file = "C:\tmp\salt.exe" $webclient.DownloadFile($url, $file)