Hmmm.... I tried that, with:

    file {
        '/opt/sugarsync/tomcat/tomcat-home/current':
            ensure => inline_template("tomcat-<%=
$config['tomcat_version_server'] %>");
    }

and that results in:

Aug  8 11:51:03 hpma01p1 puppet-master[18712]: compile error (erb):1: no
.<digit> floating literal anymore; put 0 before dot _erbout = '';
_erbout.concat "tomcat-"; _erbout.concat((
tomcat_version_libs1.0-1tomcat_version_server6.0.20-1['tomcat_version_server']
).to_s); _erbout
                  ^ (erb):1: syntax error _erbout = ''; _erbout.concat
"tomcat-"; _erbout.concat((
tomcat_version_libs1.0-1tomcat_version_server6.0.20-1['tomcat_version_server']
).to_s); _erbout
                   ^ (erb):1: syntax error _erbout = ''; _erbout.concat
"tomcat-"; _erbout.concat((
tomcat_version_libs1.0-1tomcat_version_server6.0.20-1['tomcat_version_server']
).to_s); _erbout
                                           ^ (erb):1: no .<digit> floating
literal anymore; put 0 before dot _erbout = ''; _erbout.concat "tomcat-";
_erbout.concat(( tomcat_versi



On Mon, Aug 8, 2011 at 11:22 AM, Brian Gallew <g...@gallew.org> wrote:

> String interpolation in the Puppet DSL is strictly variable->string, and
> does not handle arrays.  For what you want, use
> inline_template("tomcat-<%= $config['tomcat_version_server'] %>")
>
>
> On Aug 8, 2011, at 11:19 AM, Douglas Garstang wrote:
>
> > I've got this:
> >
> >     file {
> >         '/opt/sugarsync/tomcat/tomcat-home/current':
> >             ensure => "tomcat-$config['tomcat_version_server']";
> >
> > where $config['tomcat_version_server'] was set with extlookup (the yaml
> one), by loading:
> >
> > ---
> > tomcat_config:
> >   tomcat_version_server: 6.0.20-1
> >   tomcat_version_libs: 1.0-1
> >
> > Inside those double quotes, where variable interpolation is supposed to
> occur, I'm actually getting:
> >
> >
> tomcat-tomcat_version_libs1.0-1tomcat_version_server6.0.20-1['tomcat_version_server']
> >
> > Not '6.0.20-1'. How can I interpolate a hash inside a string? Is this a
> bug?
> >
> > Doug.
> >
> > --
> > 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 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.
>
> --
> 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 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.
>
>


-- 
Regards,

Douglas Garstang
http://www.linkedin.com/in/garstang
Email: doug.garst...@gmail.com
Cell: +1-805-340-5627

-- 
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 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