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