On Thu, Jul 29, 2010 at 12:32 PM, Christopher Johnston
<chjoh...@gmail.com> wrote:
> Is there a way in puppet to make the client render a template from a module
> and have it spit the contents of the template to stdout or to a file so it
> can be looked at before deploying?
> -Chris

You could just use it in a file resource as normal, just manage some
file other than the file you intend to deploy to:

file { "/tmp/foobar":
  content => template("mymodule/mytemplate.erb")
}

-- 
Jeff McCune
http://www.puppetlabs.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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