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: Idb41ff61080e268ff00897c21131c5ea51305d8b Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
24 lines
454 B
Puppet
24 lines
454 B
Puppet
# == Class: octavia::client
|
|
#
|
|
# Installs the octavia python library.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for package.
|
|
#
|
|
class octavia::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include octavia::deps
|
|
include octavia::params
|
|
|
|
package { 'python-octaviaclient':
|
|
ensure => $ensure,
|
|
name => $octavia::params::client_package_name,
|
|
tag => ['openstack', 'openstackclient'],
|
|
}
|
|
include openstacklib::openstackclient
|
|
}
|