In regard to: Re: [Puppet Users] mixing source & content (templates) in...:
the file type in puppet does not provide a way to do this, so unfortunately the concat cant do it either - since its just relying on the file typeThanks R.I. (and thanks for concat). I guess I'll switch all of our host-specific base fragments to be a templates, even when there's no template code in them, and use concat::fragment { 'firewall-base': target => $firewall_config, content => [ template("firewall/firewall-base.${::fqdn}.erb"), template('firewall/firewall-base'), ], order => '01', }puppet does not support this either :) what you'll get there is a concat of the 2 templates
Oh, that's quite disappointing. We'll need to completely rethink how we're doing this. Thanks again, Tim -- Tim Mooney [email protected] Enterprise Computing & Infrastructure 701-231-1076 (Voice) Room 242-J6, IACC Building 701-231-8541 (Fax) North Dakota State University, Fargo, ND 58105-5164 -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
