Use https URLs for the chocolatey package

refs #12603
This commit is contained in:
Gunnar Beutner 2016-08-31 16:34:02 +02:00
parent 996a7eb7af
commit fe3fe5cec5
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
$packageName = 'icinga2'
$installerType = 'msi'
$url32 = 'http://packages.icinga.org/windows/Icinga2-v${SPEC_VERSION}-x86.msi'
$url64 = 'http://packages.icinga.org/windows/Icinga2-v${SPEC_VERSION}-x86_64.msi'
$url32 = 'https://packages.icinga.org/windows/Icinga2-v${SPEC_VERSION}-x86.msi'
$url64 = 'https://packages.icinga.org/windows/Icinga2-v${SPEC_VERSION}-x86_64.msi'
$silentArgs = '/qn /norestart'
$validExitCodes = @(0)