Project

General

Profile

Feature #1959

Updated by Dominic Cleal over 10 years ago

It would be very great if we could reuse parameterized classes. We are using puppet to install some tomcat instances on one machine. It should look like: 
 
 class tomcat 
 
 tomcat::tomcat_instance {instance_1 
 
 port => 10080 
 
 } 

 

 class tomcat 
 
 tomcat::tomcat_instance {instance_2 
 
 port => 10080 
 
 } 
 

Back