
The minimum version of puppetlabs-stdlib has been bumped globally, so now we can use the common type definition. Change-Id: Ib4b9ba1979eea0f9dc4d1290f86e5b483316cdf4 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
24 lines
503 B
Puppet
24 lines
503 B
Puppet
# == Class: mistral::client
|
|
#
|
|
# Installs mistral python client.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# Ensure state for package. Defaults to 'present'.
|
|
#
|
|
class mistral::client (
|
|
Stdlib::Ensure::Package $package_ensure = present,
|
|
) {
|
|
include mistral::deps
|
|
include mistral::params
|
|
|
|
package { 'python-mistralclient':
|
|
ensure => $package_ensure,
|
|
name => $mistral::params::client_package,
|
|
tag => ['openstack', 'openstackclient'],
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
}
|