puppet-aodh/manifests/client.pp
Tobias Urdin d75de30b72 Convert all class usage to relative names
Change-Id: Ib0d2c8567775e0b5aa7a0799851b340cb50b784e
2019-12-08 15:06:48 +01:00

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
}