Skip to content

Commit

Permalink
AU: 1 updated - postgresql11
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Apr 29, 2021
1 parent db7756b commit 081caaf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions postgresql/postgresql.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"13.1": "13.1.1",
"postgresql-10.16": "10.16.2",
"10.16": "10.16.2",
"postgresql-11.11": "11.11.2",
"11.11": "11.11.2",
"postgresql-11.11": "11.11.3",
"11.11": "11.11.3",
"postgresql-12.6": "12.6.2",
"12.6": "12.6.2",
"postgresql-13.2": "13.2.2",
Expand Down
6 changes: 3 additions & 3 deletions postgresql/postgresql.nuspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>postgresql13</id>
<version>13.2.2</version>
<id>postgresql11</id>
<version>11.11.3</version>
<title>PostgreSQL</title>
<authors>PostgreSQL Global Development Group</authors>
<owners>majkinetor, cole.mike</owners>
Expand Down Expand Up @@ -83,7 +83,7 @@ cinst postgresql12 --force
```
]]></description>
<summary>PostgreSQL is an object-relational database management system</summary>
<releaseNotes>https://www.postgresql.org/docs/13/static/release.html</releaseNotes>
<releaseNotes>https://www.postgresql.org/docs/11/static/release.html</releaseNotes>
<copyright>Copyright © 1996-2019 The PostgreSQL Global Development Group</copyright>
<tags>foss cross-platform postgres postgresql sql relational database admin</tags>
<projectSourceUrl>https://github.com/postgres/postgres</projectSourceUrl>
Expand Down
6 changes: 3 additions & 3 deletions postgresql/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ $silentArgs = @{
$packageArgs = @{
packageName = $Env:ChocolateyPackageName
fileType = 'exe'
url64 = 'https://get.enterprisedb.com/postgresql/postgresql-13.2-2-windows-x64.exe'
checksum64 = '57CBCFB92F08B44D6EFFF381538500F87779817C27B5B3B97928FC4C1EEF3263'
url64 = 'https://get.enterprisedb.com/postgresql/postgresql-11.11-3-windows-x64.exe'
checksum64 = 'F71472D379D136756ECCC1A791CD16D93A2EB15BB189C4CF6CC84EC8D87D504F'
checksumType64 = 'sha256'
url = ''
checksum = ''
checksumType32 = 'sha256'
silentArgs = ($silentArgs.Keys | % { "--{0} {1}" -f $_.Tolower(), $silentArgs.$_}) -join ' '
validExitCodes = @(0)
softwareName = 'PostgreSQL 13*'
softwareName = 'PostgreSQL 11*'
}
Install-ChocolateyPackage @packageArgs
Write-Host "Installation log: $Env:TEMP\install-postgresql.log"
Expand Down
2 changes: 1 addition & 1 deletion postgresql/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$ErrorActionPreference = 'Stop'

$packageName = $Env:ChocolateyPackageName
$softwareNamePattern = 'PostgreSQL 13*'
$softwareNamePattern = 'PostgreSQL 11*'

[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
Expand Down

0 comments on commit 081caaf

Please sign in to comment.