Files
puppet-cloudkitty/manifests/client.pp
Takashi Kajinami 2b9ebd90a3 Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: I3c303e2ef3ec45059b295b02d6ec84e006edf724
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 00:35:42 +09:00

23 lines
452 B
Puppet

# == Class cloudkitty::client
#
# Installs the cloudkitty client.
#
# == Parameters
#
# [*ensure*]
# (Optional) The state for the cloudkitty client package.
# Defaults to 'present'.
#
class cloudkitty::client (
$ensure = 'present'
) {
include cloudkitty::deps
include cloudkitty::params
package { 'python-cloudkittyclient':
ensure => $ensure,
name => $cloudkitty::params::client_package_name,
tag => 'openstack',
}
}