Compare commits

...

3 Commits
0.1.2 ... 0.1.3

Author SHA1 Message Date
Jeff McCune
cc1dd231e3 Update CHANGELOG for version 0.1.3 2011-05-28 14:14:02 -07:00
Jeff McCune
221a6d3dab Merge branch 'bug/master/get_rid_of_stages'
* bug/master/get_rid_of_stages:
  Remove stages from java module
2011-05-28 14:13:15 -07:00
Jeff McCune
7efde2db1e Remove stages from java module
The stages feature of stdlib is turning out to be more trouble than it's
worth.  Integrating the changes from Cody and Gary results in the entire
mcollective class being in the main stage.  We've already found is
preferable to have stages after main rather than before to avoid
dependency cycles.  This only works if all modules use stages.  The
first module to not use stages will create a cycle if it requires and
modules who do use stages and the stages come after main.
2011-05-28 14:00:39 -07:00
3 changed files with 4 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
2011-05-28 Jeff McCune <jeff@puppetlabs.com> - 0.1.3
* Remove stages
2011-05-26 Jeff McCune <jeff@puppetlabs.com> - 0.1.2
* Changes JRE/JDK selection class parameter to $distribution

View File

@@ -1,5 +1,5 @@
name 'puppetlabs-java'
version '0.1.2'
version '0.1.3'
source 'git://github.com/puppetlabs/puppetlabs-java'
author 'puppetlabs'
license 'Apache'

View File

@@ -29,13 +29,11 @@ class java(
jre: {
class { 'java::jre_package':
version => $version_real,
stage => 'runtime',
}
}
jdk: {
class { 'java::jdk_package':
version => $version_real,
stage => 'runtime',
}
}
}