From f5b2645d869b76598c18527d388ed76719c06bdd Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 4 Oct 2024 21:44:50 -0700 Subject: Revert "Use @ when accessing variables in templates" Variables defined within a template can't be accessed with @. This change needs to be reworked to eliminate those cases. This reverts commits 2c7da665 and ae197622. --- deployment/mga_buildsystem/manifests/config.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'deployment/mga_buildsystem') diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index 7c5f9cc3..6b7ceb2b 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -617,9 +617,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': -- cgit v1.2.1