d75de30b72
Change-Id: Ib0d2c8567775e0b5aa7a0799851b340cb50b784e
25 lines
418 B
Puppet
25 lines
418 B
Puppet
#
|
|
# Installs the aodh python client.
|
|
#
|
|
# == parameters
|
|
# [*ensure*]
|
|
# (optional) Ensure state of the package.
|
|
# Defaults to 'present'.
|
|
#
|
|
class aodh::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include aodh::deps
|
|
include aodh::params
|
|
|
|
package { 'python-aodhclient':
|
|
ensure => $ensure,
|
|
name => $::aodh::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
|
|
}
|