Fix puppet syntax for nodepool builder logic

install_nodepool_builder is a variable and needs a $ to get an expected
result. Right now the logical condition always evaluates to true which
is wrong.

Change-Id: I6a94865cf356a4a8802650fe7b76e56204b351ee
This commit is contained in:
Mikhail S Medvedev 2018-04-11 11:44:09 -05:00
parent 7a4e625ca1
commit 930e6e59ff
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class openstackci::nodepool (
python_version => $python_version,
}
if (install_nodepool_builder) {
if ($install_nodepool_builder) {
class { '::nodepool::builder':
statsd_host => $statsd_host,
builder_logging_conf_template => $builder_logging_conf_template,