Puppet Class: gnocchi::client
- Defined in:
- manifests/client.pp
Overview
Installs the gnocchi python library.
parameters
[*ensure*]
ensure state for package.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/client.pp', line 8
class gnocchi::client (
$ensure = 'present'
) {
include gnocchi::deps
include gnocchi::params
package { 'python-gnocchiclient':
ensure => $ensure,
name => $::gnocchi::params::client_package_name,
tag => 'openstack',
}
include '::openstacklib::openstackclient'
}
|