78af0f02c3
Install ceilometerclient (aodhclient does not exist yet): * manifest * unit tests * acceptance tests * example manifest Change-Id: Ib644bd0896af71b5fd0379236c7650588fd407b2
23 lines
357 B
Puppet
23 lines
357 B
Puppet
#
|
|
# Installs the aodh python library.
|
|
#
|
|
# == parameters
|
|
# [*ensure*]
|
|
# ensure state for pachage.
|
|
#
|
|
class aodh::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include ::aodh::params
|
|
|
|
# there is no aodhclient yet
|
|
package { 'python-ceilometerclient':
|
|
ensure => $ensure,
|
|
name => $::aodh::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
}
|
|
|