
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>
23 lines
452 B
Puppet
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',
|
|
}
|
|
}
|