Skip to content

Commit

Permalink
AU: 2 updated - rundeck signal
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Sep 13, 2024
1 parent 18f859f commit f58efe5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions rundeck/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ Package can be verified like this:

1. Go to

x32: https://packagecloud.io/pagerduty/rundeck/packages/java/org.rundeck/rundeck-5.5.0-20240808.war/artifacts/rundeck-5.5.0-20240808.war/download
x32: https://packagecloud.io/pagerduty/rundeck/packages/java/org.rundeck/rundeck-5.6.0-20240912.war/artifacts/rundeck-5.6.0-20240912.war/download

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 32397822e44012d5559f77ed9f1907de3b73e9d11289ba1332ae2322880eaa01
checksum32: 2adbf4b209544010f50e41555ab9631420cc76139e8bcadbc8d9d59e6619062e

File 'license.txt' is obtained from:
https://raw.githubusercontent.com/rundeck/rundeck/master/LICENSE
4 changes: 2 additions & 2 deletions rundeck/rundeck.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>rundeck</id>
<title>Rundeck</title>
<version>5.5.0</version>
<version>5.6.0</version>
<authors>Rundeck, Inc.</authors>
<owners>Miodrag Milic</owners>
<summary>Job scheduler and runbook automation. Enable self-service access to existing scripts and tools.</summary>
Expand Down Expand Up @@ -56,7 +56,7 @@ $params = [ordered]@{
TimeZone = 'Europe/Belgrade'
}
$params = $params.GetEnumerator() | % { if ($_.Value -is [bool]) { if ($_.Value) { "/{0}" -f $_.Key}} else { "/{0}:'{1}'" -f $_.Key, $_.Value } }
choco install rundeck --params $params
cinst rundeck --params $params
```
## Notes
Expand Down
4 changes: 2 additions & 2 deletions rundeck/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ if (!$pp.InstallDir) { $pp.InstallDir = 'C:\rundeck' }
Write-Host "Installing to" $pp.InstallDir
mkdir $pp.InstallDir -ea 0 | Out-Null

$checksum32 = '32397822e44012d5559f77ed9f1907de3b73e9d11289ba1332ae2322880eaa01'
$url = 'https://packagecloud.io/pagerduty/rundeck/packages/java/org.rundeck/rundeck-5.5.0-20240808.war/artifacts/rundeck-5.5.0-20240808.war/download'
$checksum32 = '2adbf4b209544010f50e41555ab9631420cc76139e8bcadbc8d9d59e6619062e'
$url = 'https://packagecloud.io/pagerduty/rundeck/packages/java/org.rundeck/rundeck-5.6.0-20240912.war/artifacts/rundeck-5.6.0-20240912.war/download'
Get-ChocolateyWebFile rundeck "$($pp.InstallDir)\rundeck.war" $url -Checksum $checksum32

Write-Host "Setting up machine environment variable RDECK_BASE"
Expand Down
4 changes: 2 additions & 2 deletions signal/signal.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>signal</id>
<title>Signal (Desktop)</title>
<version>7.23.0</version>
<version>7.24.1</version>
<authors>Open Whisper Systems</authors>
<owners>Miodrag Milic</owners>
<summary>Fast, simple, secure. Privacy that fits in your pocket</summary>
Expand Down Expand Up @@ -34,7 +34,7 @@
<licenseUrl>http://www.gnu.org/licenses/gpl-3.0.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/majkinetor/chocolatey/signal/icon.png</iconUrl>
<releaseNotes>https://github.com/WhisperSystems/Signal-Desktop/releases/tag/v7.23.0</releaseNotes>
<releaseNotes>https://github.com/WhisperSystems/Signal-Desktop/releases/tag/v7.24.1</releaseNotes>
<docsUrl>https://www.signal.org/docs</docsUrl>
<bugTrackerUrl>https://github.com/WhisperSystems/Signal-Desktop/issues</bugTrackerUrl>
<projectSourceUrl>https://github.com/WhisperSystems/Signal-Desktop</projectSourceUrl>
Expand Down
4 changes: 2 additions & 2 deletions signal/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Set-AutoUpdate -Enable
$packageArgs = @{
packageName = 'signal'
fileType = 'EXE'
url = 'https://updates.signal.org/desktop/signal-desktop-win-7.23.0.exe'
checksum = '64ec342952a351e94f9c2aa7408ad6ce84d78b51817d2a8c53bcaa9097233767'
url = 'https://updates.signal.org/desktop/signal-desktop-win-7.24.1.exe'
checksum = 'c1bcbc47df990fdd6df4a22821921020c7a10a4288a5a8bb5a5b167289b80ee8'
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down

0 comments on commit f58efe5

Please sign in to comment.