From 05f344c596af9efd7b13b4e31f3e6366140409f3 Mon Sep 17 00:00:00 2001 From: Brandon Clifford Date: Thu, 17 Dec 2015 11:34:38 -0700 Subject: [PATCH] Update SaltStack repo location and latest version --- bootstrap-salt.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap-salt.ps1 b/bootstrap-salt.ps1 index 70d6c62..81cc8e5 100644 --- a/bootstrap-salt.ps1 +++ b/bootstrap-salt.ps1 @@ -40,14 +40,14 @@ is dynamically determined by the script. Bootstrap GitHub Project (script home) - https://github.com/saltstack/salt-windows-bootstrap Original Vagrant Provisioner Project -https://github.com/saltstack/salty-vagrant Vagrant Project (utilizes this script) - https://github.com/mitchellh/vagrant -SaltStack Download Location - http://docs.saltstack.com/downloads/ +SaltStack Download Location - https://repo.saltstack.com/windows/ #> [CmdletBinding()] Param( [Parameter(Mandatory=$false,ValueFromPipeline=$true)] # Doesn't support versions prior to "YYYY.M.R-B" [ValidatePattern('^(201[0-9]\.[0-9]\.[0-9](\-\d{1})?)$')] - [string]$version = "2015.5.2", + [string]$version = "2015.8.3", [Parameter(Mandatory=$false,ValueFromPipeline=$true)] [ValidateSet("true","false")] @@ -102,7 +102,7 @@ If ([IntPtr]::Size -eq 4) { # Download minion setup file Write-Host -NoNewline "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)