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:
parent
7a4e625ca1
commit
930e6e59ff
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user