Puppet Class: aodh::client
- Defined in:
- manifests/client.pp
Overview
Installs the aodh python client.
parameters
[*ensure*]
(optional) Ensure state of the package.
Defaults to 'present'.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'manifests/client.pp', line 9
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
}
|