7deecfbdf2
Change-Id: Ibe5a433cb67c38c0c9b05a50bffa2eda7391f241
24 lines
419 B
Puppet
24 lines
419 B
Puppet
# == Class nova::client
|
|
#
|
|
# installs nova client
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure*]
|
|
# (optional) The state for the nova client package
|
|
# Defaults to 'present'
|
|
#
|
|
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'],
|
|
}
|
|
|
|
}
|