ChocoInstall: Update script to use checksum verification

This commit is contained in:
Michael Insel 2019-10-10 18:39:33 +02:00
parent d6048f6fe0
commit d051d71b75
2 changed files with 19 additions and 7 deletions

View File

@ -520,4 +520,4 @@ if(WIN32)
)
endif()
include(CPack)
include(CPack)

View File

@ -1,8 +1,20 @@
$packageName = 'icinga2'
$installerType = 'msi'
$url32 = 'https://packages.icinga.com/windows/Icinga2-v${CHOCO_VERSION_SHORT}-x86.msi'
$packageName= 'icinga2'
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
$url = 'https://packages.icinga.com/windows/Icinga2-v${CHOCO_VERSION_SHORT}-x86.msi'
$url64 = 'https://packages.icinga.com/windows/Icinga2-v${CHOCO_VERSION_SHORT}-x86_64.msi'
$silentArgs = '/qn /norestart'
$validExitCodes = @(0)
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url32" "$url64" -validExitCodes $validExitCodes
$packageArgs = @{
packageName = $packageName
fileType = 'msi'
url = $url
url64bit = $url64
silentArgs = "/qn /norestart"
validExitCodes= @(0)
softwareName = 'Icinga 2*'
checksum = '' # TODO: Add checksum
checksumType = 'sha256'
checksum64 = '' # TODO: Add checksum
checksumType64= 'sha256'
}
Install-ChocolateyPackage @packageArgs