From 7efde2db1ef84f135c3871d3180ef8a459f3ebcb Mon Sep 17 00:00:00 2001 From: Jeff McCune Date: Sat, 28 May 2011 14:00:39 -0700 Subject: [PATCH] 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. --- manifests/init.pp | 2 -- 1 file changed, 2 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index de54142..8ea22c4 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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', } } }