Skip to content

Commit

Permalink
AU: 1 updated - rundeck
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Feb 13, 2021
1 parent 9bead64 commit d809e43
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 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://dl.bintray.com/rundeck/rundeck-maven/org/rundeck/rundeck/rundeck-3.3.8-20210111.war
x32: https://dl.bintray.com/rundeck/rundeck-maven/org/rundeck/rundeck/rundeck-3.3.9-20210201.war

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: A5EC38018149419865DFDFE49B87A134EC55917D3E35E10EFF18F3EFA675B5F7
checksum32: 9A3F4F46DA402F5416C554DC750E9E916E868EC7DE6C5AC1E7F8509F469C6DC1

File 'license.txt' is obtained from:
https://raw.githubusercontent.com/rundeck/rundeck/master/LICENSE
22 changes: 18 additions & 4 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>3.3.8</version>
<version>3.3.9</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 @@ -38,11 +38,25 @@ Rundeck allows you to run tasks on any number of nodes from a web-based or comma
* `/RunningFormatKo` - Dates in _running_ executions are in [moment.js](https://momentjs.com) format.
* `/TokenDuration` - API token duration. Format: `##{ydhms}` (years, days, hours, minutes, seconds).
* `/EnableSsl` - Use self signed SSL as described in SSL configuration.
* `/TimeZone` - Specify default time zone (affects cron jobs). See [list of timezones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
For example:
```
cinst rundeck --params "/InstallDir:c:\rundeck2 /AdminPwd:test123 /CliOpts:'-Xms2048m -Xmx4096m' /TokenDuration:10y /DateFormat:'yy-MM-dd HH:mm' /Service /EnableSsl"
```ps1
$params = [ordered]@{
InstallDir = 'c:\rundeck'
AdminPwd = 'test123'
CliOpts = '-Xms2048m -Xmx4096m'
TokenDuration = '10y'
DateFormat = 'yyyy-MM-dd HH:mm'
DateFormatKo = 'YYYY-MM-DD HH:mm'
RunningFormatKo = 'HH:mm'
Service = $true
EnableSsl = $true
TimeZone = 'Europe/Belgrade'
}
$params = $params.GetEnumerator() | % { if ($_.Value -is [bool]) { if ($_.Value) { "/{0}" -f $_.Key}} else { "/{0}:'{1}'" -f $_.Key, $_.Value } }
cinst rundeck --params $params
```
## Notes
Expand All @@ -61,7 +75,7 @@ cinst rundeck --params "/InstallDir:c:\rundeck2 /AdminPwd:test123 /CliOpts:'-Xms
<licenseUrl>https://github.com/rundeck/rundeck/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/majkinetor/chocolatey/rundeck/icon.png</iconUrl>
<releaseNotes>https://docs.rundeck.com/3.3.x/history/3_3_x/version-3.3.8.html#overview</releaseNotes>
<releaseNotes>https://docs.rundeck.com/3.3.x/history/3_3_x/version-3.3.9.html#overview</releaseNotes>
<docsUrl>http://rundeck.org/docs.html</docsUrl>
<bugTrackerUrl>https://github.com/rundeck/rundeck/issues</bugTrackerUrl>
<projectSourceUrl>https://github.com/rundeck/rundeck</projectSourceUrl>
Expand Down

0 comments on commit d809e43

Please sign in to comment.