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

122 views
Skip to first unread message

Keith Burdis

unread,
May 19, 2013, 7:55:30 AM5/19/13
to puppet-users
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 <luca.g...@gmail.com> 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...@googlegroups.com.
To post to this group, send email to puppet...@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.
 
 

Nikola Petrov

unread,
May 20, 2013, 9:34:22 AM5/20/13
to puppet...@googlegroups.com
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

joe

unread,
May 20, 2013, 7:31:57 PM5/20/13
to puppet...@googlegroups.com
Please heed the advice of others concerning packaging.

As to your require question, you can require a defined type just like any other resource:

require => Tomcat::Home['6.0.37']
Reply all
Reply to author
Forward
0 new messages