Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FortiClient version to 7.0.1 #306

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions forticlientvpn/forticlientvpn.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>forticlientvpn</id>
<version>6.2.6.0951</version>
<version>7.0.1.0083</version>
<title>FortiClient VPN (Install)</title>
<authors>Fortinet Inc</authors>
<owners>bcurran3</owners>
Expand All @@ -13,7 +13,7 @@
<copyright>Copyright © Fortinet Inc</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://www.fortinet.com/content/dam/fortinet/assets/legal/EULA.pdf</licenseUrl>
<docsUrl>https://docs.fortinet.com/product/forticlient/6.2</docsUrl>
<docsUrl>https://docs.fortinet.com/product/forticlient/7.0</docsUrl>
<mailingListUrl>https://forum.fortinet.com/</mailingListUrl>
<tags>fortinet fortigate forticlient vpn</tags>
<summary>SSL and IPSec VPN client for Fortinet firewalls.</summary>
Expand All @@ -37,7 +37,7 @@ Click here to [Patreon-ize](https://www.patreon.com/bcurran3) the package mainta
___

</description>
<releaseNotes>https://docs.fortinet.com/document/forticlient/6.2.6/windows-release-notes/371487/introduction</releaseNotes>
<releaseNotes>https://docs.fortinet.com/document/forticlient/7.0.1/windows-release-notes/371487/introduction</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
17 changes: 10 additions & 7 deletions forticlientvpn/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
$ErrorActionPreference = 'Stop'
$packageName = 'forticlientvpn'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://d3gpjj9d20n0p3.cloudfront.net/forticlient/downloads/FortiClientVPNSetup_6.2.6.0951.exe'
$checksum = 'B85F5E9AECC86FF4FBBA25EA064604B48D3CA723FC4AFA7F5CEF3D289E21D84E'
$url64 = 'https://d3gpjj9d20n0p3.cloudfront.net/forticlient/downloads/FortiClientVPNSetup_6.2.6.0951_x64.exe'
$checksum64 = '4A0E4D3BB2F969FBBD61D67180604E035D89A44FC1D664B5CBA14368BB3FA671'
$url = 'https://filestore.fortinet.com/forticlient/downloads/FortiClientVPNSetup_7.0.1.0083.zip'
checksum = 'd0d31562aca5e3b652dfef86085d9c72ff6ed0f960f51e44a506fc4aef7f91b9'
$url64 = 'https://filestore.fortinet.com/forticlient/downloads/FortiClientVPNSetup_7.0.1.0083_x64.zip.zip'
$checksum64 = '1f218f32abd41c678cc7dbc50a4da70fbe7c7647518555268a2a55068fc56b96'
$fileLocation = Join-Path $toolsDir 'FortiClientVPN.msi'

$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
fileType = 'EXE'
fileType = 'MSI'
url = $url
url64 = $url64
silentArgs = '/QUIET /NORESTART'
file = $fileLocation
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
softwareName = 'FortiClient VPN'
checksum = $checksum
checksum64 = $checksum64
checksumType = 'sha256'
}

Install-ChocolateyPackage @packageArgs
Install-ChocolateyZipPackage @packageArgs
Install-ChocolateyInstallPackage @packageArgs