
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I2bdb5c200f3937ae018a8c34485ef3bd4d833763 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
24 lines
657 B
Puppet
24 lines
657 B
Puppet
# == Class: openstacklib::openstackclient
|
|
#
|
|
# Installs the openstackclient
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) Ensure state of the openstackclient package.
|
|
# Defaults to 'present'
|
|
#
|
|
# [*package_name*]
|
|
# (Optional) The name of the package to install
|
|
# Defaults to $openstacklib::params::openstackclient_package_name
|
|
#
|
|
class openstacklib::openstackclient (
|
|
$package_name = $openstacklib::params::openstackclient_package_name,
|
|
$package_ensure = 'present',
|
|
) inherits openstacklib::params {
|
|
stdlib::ensure_packages($package_name, {
|
|
'ensure' => $package_ensure,
|
|
'tag' => ['openstack', 'openstackclient']
|
|
})
|
|
}
|