
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3109b052d5eb21f6f26174390a9d5bf2756c6ec2 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
23 lines
439 B
Puppet
23 lines
439 B
Puppet
# == Class: magnum::client
|
|
#
|
|
# Manages the magnum client package on systems
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) The state of the package
|
|
# Defaults to 'present'
|
|
#
|
|
class magnum::client (
|
|
$package_ensure = 'present'
|
|
) {
|
|
include magnum::deps
|
|
include magnum::params
|
|
|
|
package { 'python-magnumclient':
|
|
ensure => $package_ensure,
|
|
name => $magnum::params::client_package,
|
|
tag => 'openstack',
|
|
}
|
|
}
|