diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..e342091 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,2 @@ +2011-05-24 Jeff McCune - 0.0.1 +* Initial release diff --git a/Modulefile b/Modulefile index a2cac7d..d31593d 100644 --- a/Modulefile +++ b/Modulefile @@ -1,11 +1,11 @@ name 'puppetlabs-java' version '0.0.1' -source 'UNKNOWN' +source 'git://github.com/puppetlabs/puppetlabs-java' author 'puppetlabs' -license 'UNKNOWN' -summary 'UNKNOWN' -description 'UNKNOWN' -project_page 'UNKNOWN' +license 'Apache' +summary 'Manage the official Java runtime' +description 'Manage the official Java runtime' +project_page 'https://github.com/puppetlabs/puppetlabs-java' ## Add dependencies, if any: -# dependency 'username/name', '>= 1.2.0' +dependency 'puppetlabs/stdlib', '>= 0.1.2' diff --git a/README.markdown b/README.markdown index 828c0f5..34b71b7 100644 --- a/README.markdown +++ b/README.markdown @@ -1,3 +1,6 @@ -java +# Java # + +Manage the Java runtime for use with other application software. + +Currently this simply deploys the package on Enterprise Linux based systems. -This is the java module. diff --git a/manifests/init.pp b/manifests/init.pp index 70773e7..7169a3c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -19,7 +19,7 @@ class java( class { 'java::jre_package': version => $version_real, - stage => 'deploy', + stage => 'runtime', } }