Fix api.pp "Unknown variable"

When running, we get:
Unknown variable: '::placement::params::api_package_name'.
Indeed, the variable should be ::placement::params::package_name.

This patch fixes this.

Change-Id: I764ee3a47edc5b2d40ed1870bcb94ada3ed9ef38
(cherry picked from commit 142633cc58)
This commit is contained in:
Thomas Goirand 2020-05-30 14:18:54 +02:00 committed by Takashi Kajinami
parent 1c210aad3e
commit 7922ce0bcd
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class placement::api (
package { 'placement-api':
ensure => $package_ensure,
name => $::placement::params::api_package_name,
name => $::placement::params::package_name,
tag => ['openstack', 'placement-package'],
}