puppet-aodh/manifests/client.pp
ZhongShengping a64faf3c74 Fix annotation of the ensure parameter
Change-Id: I4fad09df5349d550d53191ef5aaeffda0002d69c
2017-01-20 17:28:45 +08:00

24 lines
382 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',
}
}