From fe3fe5cec5af3cd33f754a695109232cc84150c9 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 31 Aug 2016 16:34:02 +0200 Subject: [PATCH] Use https URLs for the chocolatey package refs #12603 --- choco/chocolateyInstall.ps1.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/choco/chocolateyInstall.ps1.cmake b/choco/chocolateyInstall.ps1.cmake index 1888cf770..d23f34f8b 100755 --- a/choco/chocolateyInstall.ps1.cmake +++ b/choco/chocolateyInstall.ps1.cmake @@ -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) -- 2.40.0