Re: [Puppet Users] Rhel based distro and multiple package version installed

2013-05-20 Thread Nikola Petrov
You should really build packages of java/tomcat with fpm. It will save
you so much time and hassle in the end. Want different versions of the
same package you just have to name them with the package version - no
problem. 

Let's assume that extract the java distribution in a directory named
java-$(VERSION), just run the following:

fpm -s dir -t deb -n java-$(VERSION) -v $(VERSION) -a x86_64 --prefix /opt 
--provides 
java-runtime,java2-runtime,java5-runtime,java6-runtime,java7-runtime,java7-runtime-headless
 java-$(VERSION)

and you should be good to go. Change this as needed(like architecture,
deb/rpm prefix and the provides)


-- 
Nikola




On Sat, May 18, 2013 at 01:38:47AM -0700, Luca Gervasi wrote:
> Hello,
> 
> i'm starting using Puppet on my personal lab. There I'd like to reproduce a 
> multi base tomcat installation as follows:
> 
> * Multiple jdk installations (multiple 1.6.x, multiple 1.7.x)
> * Multiple tomcat installations (multiple 6.0.x, multiple 7.0.x)
> 
> Here is the problem:
> using the Package definition, i'm unable to have multiple jdk version (as 
> 1.6.4 supersedes 1.6.3, leaving only the last one installed correctly), so 
> I created a custom define that uses a File definition to copy multiple 
> directories (/opt/java/jdk-$version) from my puppetmaster (recurse + purge) 
> and used this as follows:
> 
> tomcat::home { "6.0.37": version => "6.0.37"}
> jdk::home { "1.6.24": version => "1.6.24"}
> 
> but i'm unable to create a simple check on my tomcat istances like a 
> require tomcat-6.0.37.
> 
> How can i accomplish what i need?
> 
> Thanks in advance.
> 
> Luca Gervasi
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Puppet Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to puppet-users+unsubscr...@googlegroups.com.
> To post to this group, send email to puppet-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/puppet-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
> 
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Puppet Users] Rhel based distro and multiple package version installed

2013-05-19 Thread Keith Burdis
Two options come to mind:

1) Install the JDK and Tomcat products from tarball into separate
directories for each version which is what I do with
erwbgy/sunjdk
 and erwbgy/tomcat 

2) Create custom packages for each of the product versions installing the
files into separate directories - for example using
fpm
.

  - Keith



On 18 May 2013 09:38, Luca Gervasi  wrote:

> Hello,
>
> i'm starting using Puppet on my personal lab. There I'd like to reproduce
> a multi base tomcat installation as follows:
>
> * Multiple jdk installations (multiple 1.6.x, multiple 1.7.x)
> * Multiple tomcat installations (multiple 6.0.x, multiple 7.0.x)
>
> Here is the problem:
> using the Package definition, i'm unable to have multiple jdk version (as
> 1.6.4 supersedes 1.6.3, leaving only the last one installed correctly), so
> I created a custom define that uses a File definition to copy multiple
> directories (/opt/java/jdk-$version) from my puppetmaster (recurse + purge)
> and used this as follows:
>
> tomcat::home { "6.0.37": version => "6.0.37"}
> jdk::home { "1.6.24": version => "1.6.24"}
>
> but i'm unable to create a simple check on my tomcat istances like a
> require tomcat-6.0.37.
>
> How can i accomplish what i need?
>
> Thanks in advance.
>
> Luca Gervasi
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Puppet Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to puppet-users+unsubscr...@googlegroups.com.
> To post to this group, send email to puppet-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/puppet-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.