
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3c5704fa87db1cca7f0edd9396eacac6e70438f9 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
26 lines
491 B
Puppet
26 lines
491 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
|
|
|
|
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',
|
|
}
|
|
}
|