Made Salt Minion version to install a variable - ideally Salt would offer a -latest.exe or something for Windows

This commit is contained in:
Marno van der Molen 2014-05-28 11:09:59 +02:00
parent 70df09e297
commit d93a2c0e55
1 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# Salt version to install
$version = '2014.1.4'
# Copy minion keys & config to correct location
New-Item c:\salt\conf\pki\minion\ -ItemType directory | out-null
@ -22,7 +25,7 @@ if ([IntPtr]::Size -eq 4) {
# Download minion setup file
Write-Host "Downloading Salt minion installer ($arch)..."
$webclient = New-Object System.Net.WebClient
$url = "https://docs.saltstack.com/downloads/Salt-Minion-2014.1.3-1-$arch-Setup.exe"
$url = "https://docs.saltstack.com/downloads/Salt-Minion-$version-$arch-Setup.exe"
$file = "C:\tmp\salt.exe"
$webclient.DownloadFile($url, $file)