Files
puppet-neutron/manifests/client.pp
Takashi Kajinami 7cc132f5af Prepare for new lint plugins
This fixes a few lint warnings/errors detected by the following plugins
we aim to enable soon.
 - puppet-lint-file_ensure-check
 - puppet-lint-trailing_comma-check
 - puppet-lint-topscope-variable-check

Change-Id: Ia9fcaf566a004724a27768d4d35dad554b4146a6
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-15 20:40:50 +09:00

30 lines
588 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
}