Files
puppet-aodh/manifests/client.pp
ZhongShengping d19b1209dc Add openstackclient installation to the client class
The repo is inside the openstackclient plugin commands[1].

[1]https://docs.openstack.org/python-openstackclient/latest/cli/plugin-commands.html

Change-Id: Id8ec77c7bbe59327d87f5bf583916e9123db1bc0
2019-05-17 16:31:13 +08:00

26 lines
427 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'
}