Files
puppet-neutron/manifests/client.pp
Takashi Kajinami d32c6f9e0a Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: Ie866db54a2c8f1f7b2bfa67077934118cdf7ffa3
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 10:39:11 +09:00

28 lines
586 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 (
$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
}