Displaying 2 results from an estimated 2 matches for "my_cont".
Did you mean:
my_const
2013 Jun 11
2
hiera data bindings and template()
Hi,
I''m using Puppet 3.2.1 and heavily relying on hiera data bindings.
I have the following situation:
class software (
$my_content = undef,
) {
file { ''/path/to/file'':
content => $software::my_content,
}
}
in hieradata/software.yaml (hiera.yaml seems ok):
software::my_content: template(''mymodule/myfile.erb'')
With this configuration I get /path/to/file to contain the string
&...
2006 Apr 10
8
Advice on Similar Views with Helpers
I have some embedded tables that form different sections of a view. I
find that I use the same look for certain ones which means I have to
duplicate the same exact table for each section that''s similar.
Is there a way to do.. hmm.. well.. kind of like what a layout does
using @content_for_layout, but for a partial. Does that make any sense
whatsoever? :)
OK so here''s some