diff options
author | Pascal Terjan <pterjan@gmail.com> | 2014-12-13 18:10:45 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-12-13 18:11:02 +0000 |
commit | 415d1f697c7118d890362722cc06355119a38e71 (patch) | |
tree | a5793a174a575d000de23cd437aad87590434485 /deployment | |
parent | 6653276ccfb911d396fd7d9229d76608944c39ec (diff) | |
download | puppet-415d1f697c7118d890362722cc06355119a38e71.tar puppet-415d1f697c7118d890362722cc06355119a38e71.tar.gz puppet-415d1f697c7118d890362722cc06355119a38e71.tar.bz2 puppet-415d1f697c7118d890362722cc06355119a38e71.tar.xz puppet-415d1f697c7118d890362722cc06355119a38e71.zip |
Forbid ~ in release tag
Diffstat (limited to 'deployment')
-rw-r--r-- | deployment/mga_buildsystem/manifests/config.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index 3ab19839..82513fc5 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -738,7 +738,7 @@ class mga_buildsystem::config { } $checks_tag_options = { 'tags' => { - 'release' => inline_template("<%= std_macros['distsuffix'] %>\\d+"), + 'release' => inline_template("^[^~]*<%= std_macros['distsuffix'] %>\\d+"), 'distribution' => inline_template("^<%= std_macros['distribution'] %>"), 'vendor' => inline_template("^<%= std_macros['vendor'] %>$"), }, |