File: client.pp

package info (click to toggle)
puppet-module-gnocchi 25.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,096 kB
  • sloc: ruby: 2,339; python: 38; makefile: 10; sh: 10
file content (24 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# 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

}