puppet-gnocchi/manifests/client.pp
Tobias Urdin 0983e5888c Change to relative include
Change-Id: Iff924ab75d40ffba6a213c54a6e28933b18cf7e4
2020-07-13 23:43:57 +02:00

25 lines
398 B
Puppet

#
# Installs the gnocchi python library.
#
# == parameters
# [*ensure*]
# ensure state for package.
#
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
}