aboutsummaryrefslogtreecommitdiffstats
path: root/deployment
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-06-22 01:54:37 +0300
committerThomas Backlund <tmb@mageia.org>2015-06-22 01:54:37 +0300
commitddff6b8f85bed70e1e6797aa49f9a19b877b207d (patch)
treeb629cc8193677c2a41801e40c4b3200c7ef1e123 /deployment
parent31c8c2234acdc0a884bb00c58fc326b83ac26406 (diff)
downloadpuppet-ddff6b8f85bed70e1e6797aa49f9a19b877b207d.tar
puppet-ddff6b8f85bed70e1e6797aa49f9a19b877b207d.tar.gz
puppet-ddff6b8f85bed70e1e6797aa49f9a19b877b207d.tar.bz2
puppet-ddff6b8f85bed70e1e6797aa49f9a19b877b207d.tar.xz
puppet-ddff6b8f85bed70e1e6797aa49f9a19b877b207d.zip
fix check_tag_options
Diffstat (limited to 'deployment')
-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 f3b69c92..0517ebcb 100644
--- a/deployment/mga_buildsystem/manifests/config.pp
+++ b/deployment/mga_buildsystem/manifests/config.pp
@@ -835,9 +835,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':