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

Minor upstream rev changes, along with missed template change from 2.5 -> 2.6 #67

Closed
wants to merge 4 commits 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
=======
## 2.0.13
* Update template file for 2.6.2
* Update downloaded deb and rpm for 2.6.2
* Updated checksum for 2.6.2

## 2.0.12
* winrm plugin broken in 2.6. Updating winrm plugin to version 1.3.1 from 1.1

Expand Down
6 changes: 3 additions & 3 deletions attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
default['rundeck']['configdir'] = '/etc/rundeck'
default['rundeck']['basedir'] = '/var/lib/rundeck'
default['rundeck']['datadir'] = '/var/rundeck'
default['rundeck']['deb']['package'] = 'rundeck-2.6.0-1-GA.deb'
default['rundeck']['deb']['package'] = 'rundeck-2.6.2-1-GA.deb'
default['rundeck']['deb']['options'] = false #--force-confdef --force-confold
default['rundeck']['rpm']['version'] = '2.6.0-1.11.GA' # rundeck package from http://dl.bintray.com/rundeck/rundeck-rpm
default['rundeck']['rpm']['version'] = '2.6.2-1.13.GA' # rundeck package from http://dl.bintray.com/rundeck/rundeck-rpm
default['rundeck']['url'] = "http://download.rundeck.org/deb/#{node['rundeck']['deb']['package']}"
default['rundeck']['checksum'] = '46e591f945f053b22c2d508e063332dcfc8ff6b81662d6cb4c645b371ec328bb'
default['rundeck']['checksum'] = '9eabcdd20382a7106c056f4fb77858ceab330b9f2b2983903ee2717212325d9f'
default['rundeck']['port'] = 4440
default['rundeck']['jaas'] = 'internal'
default['rundeck']['default_role'] = 'user'
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'All rights reserved'
description 'Installs and configures Rundeck 2.x'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '2.0.12'
version '2.0.13'
depends 'runit'
depends 'sudo'
depends 'java'
Expand Down
4 changes: 2 additions & 2 deletions templates/default/web.xml.erb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<web-app xmlns="http://java.sun.com/xml/ns/javaee" metadata-complete="true" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<display-name>/rundeck-production-2.5.1</display-name>
<display-name>/rundeck-production-2.6.2</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>rundeck-production-2.5.1</param-value>
<param-value>rundeck-production-2.6.2</param-value>
</context-param>
<context-param>
<param-name>sample</param-name>
Expand Down