6beefeabd0
Change-Id: Ie16be0d3707611279f0e782b33827de180143f14
24 lines
429 B
Puppet
24 lines
429 B
Puppet
# == Class: murano::client
|
|
#
|
|
# murano client package
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) Ensure state for package
|
|
# Defaults to 'present'
|
|
#
|
|
class murano::client(
|
|
$package_ensure = 'present',
|
|
) {
|
|
|
|
include ::murano::params
|
|
|
|
package { 'python-muranoclient':
|
|
ensure => $package_ensure,
|
|
name => $::murano::params::pythonclient_package_name,
|
|
tag => ['openstack', 'murano-packages'],
|
|
}
|
|
|
|
}
|