It sounds like you've got this written down twice:

package { "gcc": ensure => installed }

Causing a duplicate resource definition. To get around this, move the gcc package install into a module of it's own, called say "gcc", then in your database and application modules simply "include gcc" to pull in your new gcc module as a requirement. You will also need to look at requirements (http://docs.puppetlabs.com/learning/ordering.html).

If you prefer to declare your classes like this:

class { "gcc": }

Then you have to think about how to organise your node definitions a little bit differently as you'll run into the same Duplicate Definition error.

On 13/01/12 17:02, bel wrote:
We have a database module and an application module that both require
gcc. When I include both modules in a node, I get errors about the
package being already defined.

How would I address this?



--
Luke Bigum
Information Systems
+44 (0) 20 3192 2520
luke.bi...@lmax.com | http://www.lmax.com
LMAX, Yellow Building, 1A Nicholas Road, London W11 4AN


The information in this e-mail and any attachment is confidential and is 
intended only for the named recipient(s). The e-mail may not be disclosed or 
used by any person other than the addressee, nor may it be copied in any way. 
If you are not a named recipient please notify the sender immediately and 
delete any copies of this message. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden. Any view or 
opinions presented are solely those of the author and do not necessarily 
represent those of the company.

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

Reply via email to