aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/mga_buildsystem
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2026-02-21 17:42:08 -0800
committerDan Fandrich <danf@mageia.org>2026-02-21 20:27:09 -0800
commit5b23841245eea3a2ba86dd0544668b5e00eb5b4b (patch)
treec3af54f4b71b692c407594b71321f66ec67ac2d4 /deployment/mga_buildsystem
parent7eb99b79075a96cb32ee2ce4bc26493d06f94387 (diff)
downloadpuppet-5b23841245eea3a2ba86dd0544668b5e00eb5b4b.tar
puppet-5b23841245eea3a2ba86dd0544668b5e00eb5b4b.tar.gz
puppet-5b23841245eea3a2ba86dd0544668b5e00eb5b4b.tar.bz2
puppet-5b23841245eea3a2ba86dd0544668b5e00eb5b4b.tar.xz
puppet-5b23841245eea3a2ba86dd0544668b5e00eb5b4b.zip
Use @ when accessing variables in templates
Access without the @ symbol is the older method and is discouraged. This is the third batch of files.
Diffstat (limited to 'deployment/mga_buildsystem')
-rw-r--r--deployment/mga_buildsystem/manifests/config.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp
index 16f8cb68..0342924d 100644
--- a/deployment/mga_buildsystem/manifests/config.pp
+++ b/deployment/mga_buildsystem/manifests/config.pp
@@ -611,9 +611,9 @@ class mga_buildsystem::config {
}
$checks_tag_options = {
'tags' => {
- 'release' => inline_template("^[^~]*<%= std_macros['distsuffix'] %>\\d+"),
- 'distribution' => inline_template("^<%= std_macros['distribution'] %>"),
- 'vendor' => inline_template("^<%= std_macros['vendor'] %>$"),
+ 'release' => inline_template("^[^~]*<%= @std_macros['distsuffix'] %>\\d+"),
+ 'distribution' => inline_template("^<%= @std_macros['distribution'] %>"),
+ 'vendor' => inline_template("^<%= @std_macros['vendor'] %>$"),
},
}
class { 'buildsystem::var::youri':