
The minimum version of puppetlabs-stdlib has been bumped globally, so now we can use the common type definition. Change-Id: Ib817f869377b39de21fbd1cba8ca265f1a5ac67e Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
26 lines
516 B
Puppet
26 lines
516 B
Puppet
# == Class nova::client
|
|
#
|
|
# installs nova client
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure*]
|
|
# (optional) The state for the nova client package
|
|
# Defaults to 'present'
|
|
#
|
|
class nova::client (
|
|
Stdlib::Ensure::Package $ensure = 'present',
|
|
) {
|
|
include nova::deps
|
|
include nova::params
|
|
|
|
warning("The nova::client class has been deprecated and will be removed \
|
|
in a future release.")
|
|
|
|
package { 'python-novaclient':
|
|
ensure => $ensure,
|
|
name => $nova::params::client_package,
|
|
tag => 'openstack',
|
|
}
|
|
}
|