File: client.pp

package info (click to toggle)
puppet-module-cloudkitty 14.0.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,056 kB
  • sloc: ruby: 2,270; python: 38; sh: 10; makefile: 10
file content (24 lines) | stat: -rw-r--r-- 456 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
# == Class cloudkitty::client
#
# Installs the cloudkitty client.
#
# == Parameters
#
#  [*ensure*]
#    (Optional) The state for the cloudkitty client package.
#    Defaults to 'present'.
#
class cloudkitty::client (
  $ensure = 'present'
) {

  include cloudkitty::deps
  include cloudkitty::params

  package { 'python-cloudkittyclient':
    ensure => $ensure,
    name   => $::cloudkitty::params::client_package_name,
    tag    => 'openstack',
  }

}