diff options
| author | Dan Fandrich <danf@mageia.org> | 2026-02-21 21:46:53 -0800 |
|---|---|---|
| committer | Dan Fandrich <danf@mageia.org> | 2026-02-21 22:05:46 -0800 |
| commit | 84396c4ea8ea357cbed2055bf599b9d593b247a1 (patch) | |
| tree | 48c013b8ced12d5335e0d3ba8a16d3f4acce8626 /modules/buildsystem | |
| parent | 394f128c52caae23a9024c55cbef043bf7e080ea (diff) | |
| download | puppet-84396c4ea8ea357cbed2055bf599b9d593b247a1.tar puppet-84396c4ea8ea357cbed2055bf599b9d593b247a1.tar.gz puppet-84396c4ea8ea357cbed2055bf599b9d593b247a1.tar.bz2 puppet-84396c4ea8ea357cbed2055bf599b9d593b247a1.tar.xz puppet-84396c4ea8ea357cbed2055bf599b9d593b247a1.zip | |
Use @ when accessing variables in templates
Access without the @ symbol is the older method and is discouraged.
This is the fifth batch of files.
Diffstat (limited to 'modules/buildsystem')
| -rw-r--r-- | modules/buildsystem/templates/iurt.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/buildsystem/templates/iurt.conf b/modules/buildsystem/templates/iurt.conf index aadc824c..0bd30acb 100644 --- a/modules/buildsystem/templates/iurt.conf +++ b/modules/buildsystem/templates/iurt.conf @@ -21,14 +21,14 @@ sendmail => 0, log_size_limit => '600M', build_timeout => { -<%- build_timeout.keys.sort.each{|package| -%> - '<%= package %>' => <%= (build_timeout[package].to_f * scope.lookupvar('buildsystem::var::iurt::timeout_multiplier').to_f).to_i %>, +<%- @build_timeout.keys.sort.each{|package| -%> + '<%= package %>' => <%= (@build_timeout[package].to_f * scope.lookupvar('buildsystem::var::iurt::timeout_multiplier').to_f).to_i %>, <%- } -%> }, use_netns => { 'default' => 1, -<%- allow_network_access.sort.each{|package| -%> +<%- @allow_network_access.sort.each{|package| -%> '<%= package %>' => 0, <%- } -%> |
