Puppet Class: nova::client

Defined in:
manifests/client.pp

Overview

Class nova::client

installs nova client

Parameters:

ensure

(optional) The state for the nova client package Defaults to ‘present’

Parameters:

  • ensure (Any) (defaults to: 'present')


11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/client.pp', line 11

class nova::client(
  $ensure = 'present'
) {
  include nova::deps
  include nova::params

  package { 'python-novaclient':
    ensure => $ensure,
    name   => $::nova::params::client_package,
    tag    => ['openstack', 'nova-support-package'],
  }

}