>   file { '/etc/httpd/conf.d/ssl.conf' : 
>     ensure  => file , 
>     content => template ( "${module_name}{$name}.erb" ) , 
>   } 
>
> Here $name expands to "apache", so the filename passed to template() is 
> "apacheapache.erb", rather than the expected and desired value 
> "apache/etc/httpd/conf.d/ssl.conf.erb". 
>
> Here you have syntax problem try,
content => template ( "${module_name}/${name}.erb" ) , 

Thanks and Regards,
Rahul Khengare,
NTT DATA OSS Center, Pune, India.

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to