Files
puppet-gnocchi/manifests/client.pp
Takashi Kajinami 8fbaed2a43 Prepare for new lint plugins
This fixes a few lint warnings/errors detected by the following plugins
we aim to enable soon.
 - puppet-lint-file_ensure-check
 - puppet-lint-trailing_comma-check
 - puppet-lint-topscope-variable-check

Change-Id: I438e1cdb3d275a364718fa0f924ab62f1045ca0f
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-15 20:10:04 +09:00

25 lines
396 B
Puppet

#
# Installs the gnocchi python library.
#
# == parameters
# [*ensure*]
# ensure state for package.
#
class gnocchi::client (
$ensure = 'present'
) {
include gnocchi::deps
include gnocchi::params
package { 'python-gnocchiclient':
ensure => $ensure,
name => $gnocchi::params::client_package_name,
tag => 'openstack',
}
include openstacklib::openstackclient
}