Files
puppet-mistral/manifests/client.pp
Takashi Kajinami b4875a3421 Validate ensure parameter for package resources
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>
2025-09-23 18:11:09 +09:00

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
}