Showing with 35 additions and 5 deletions.
  1. +14 −0 CHANGELOG.md
  2. +1 −1 Modulefile
  3. +8 −1 metadata.json
  4. +0 −1 spec/acceptance/nodesets/default.yml
  5. +10 −0 spec/acceptance/nodesets/default.yml
  6. +2 −2 spec/spec_helper_acceptance.rb
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
##2014-03-04 - Supported Release 1.2.3
###Summary

This is a supported release. This release removes a testing symlink that can
cause trouble on systems where /var is on a seperate filesystem from the
modulepath.

####Features

####Bugfixes

####Known Bugs
* No known bugs

##2014-03-04 - Supported Release 1.2.2
###Summary

Expand Down
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'puppetlabs-java_ks'
version '1.2.2'
version '1.2.3'

author 'puppetlabs'
license 'ASL 2.0'
Expand Down
9 changes: 8 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-java_ks",
"version": "1.2.2",
"version": "1.2.3",
"source": "https://github.com/puppetlabs/puppetlabs-java_ks",
"author": "Puppet Labs",
"license": "Apache-2.0",
Expand Down Expand Up @@ -28,6 +28,13 @@
"6"
]
},
{
"operatingsystem": "Scientific",
"operatingsystemrelease": [
"5",
"6"
]
},
{
"operatingsystem": "SLES",
"operatingsystemrelease": [
Expand Down
1 change: 0 additions & 1 deletion spec/acceptance/nodesets/default.yml

This file was deleted.

10 changes: 10 additions & 0 deletions spec/acceptance/nodesets/default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
HOSTS:
centos-64-x64.local:
roles:
- master
platform: el-6-x86_64
box : centos-64-x64-vbox4210-nocm
box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
hypervisor : vagrant
CONFIG:
type: git
4 changes: 2 additions & 2 deletions spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'beaker-rspec/spec_helper'
require 'beaker-rspec/helpers/serverspec'

UNSUPPORTED_PLATFORMS = [ 'Scientific' ]
UNSUPPORTED_PLATFORMS = []

unless ENV['RS_PROVISION'] == 'no'
hosts.each do |host|
Expand Down Expand Up @@ -34,7 +34,7 @@
# Install module and dependencies
puppet_module_install(:source => proj_root, :module_name => 'java_ks')
hosts.each do |host|
on host, puppet('module','install','puppetlabs-java','--version','1.0.1')
on host, puppet('module','install','puppetlabs-java')
end
end
end