puppet-nova/manifests/client.pp

27 lines
493 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',
}
}