
The new openstackclient tag was added so that we can get all resources about openstack CLI more easily. This adds this tag to aodhclient because the package provides some sub-commands. Change-Id: Iaa9e1b818e8cb337e41688dc956a17193656ed3e
25 lines
439 B
Puppet
25 lines
439 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', 'openstackclient'],
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
|
|
}
|