[Puppet Users] Puppet Module Confusions

2011-07-04 Thread imase
/manifests/ init.pp:33 on node v00404.sbb.ch Is there maybe a bug in version 2.6.9? Thanks imase -- 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

[Puppet Users] Re: Puppet Module Confusions

2011-07-05 Thread imase
; include general } and my site.pp # Example42 common module has to be explicitely imported # (contains defines used by other modules that won't autoload) import "common" # Baselines classes include modules that have to be applied to all nodes. # import "baselines/*.pp&

[Puppet Users] Variable not working in a define

2011-11-10 Thread imase
Hello together, I have a define which was written by someone else and I am trying to extend it by the $version variable. My Module is called tcserver and it's a type of an apache tomcat. The package of tcserver will be deployed by an rpm via the module. After the installation there are two version

[Puppet Users] Re: Variable not working in a define

2011-11-10 Thread imase
Oh man, I found the mistake. It is in the template: TOMCAT_VER="<%= scope.lookupvar('tcserver::params::instance_version') %>" should be: TOMCAT_VER="<%= scope.lookupvar('version')%>" Because it is called out of tcserver::instance. Kin