Files
puppet-neutron/manifests/client.pp
Takashi Kajinami b3a382f738 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: Ide3c9d927c25721001295faa105835928a95cf9d
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-09-23 21:27:01 +09:00

28 lines
610 B
Puppet

# == Class: neutron::client
#
# Manages the neutron client package on systems
#
# === Parameters:
#
# [*package_ensure*]
# (optional) The state of the package
# Defaults to present
#
class neutron::client (
Stdlib::Ensure::Package $package_ensure = present
) {
include neutron::deps
include neutron::params
warning("The neutron::client class has been deprecated and will be removed \
in a future release.")
package { 'python-neutronclient':
ensure => $package_ensure,
name => $neutron::params::client_package,
tag => 'openstack',
}
include openstacklib::openstackclient
}