puppet-murano/manifests/client.pp
Alexey Deryugin 6beefeabd0 Client and dashboard class implementation
Change-Id: Ie16be0d3707611279f0e782b33827de180143f14
2015-11-09 20:08:19 +03:00

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'],
}
}