Files
puppet-nova/manifests/client.pp
Takashi Kajinami 56f8a011c6 Validate ensure parameter for package resources
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>
2025-09-23 21:35:29 +09:00

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',
}
}