puppet-murano/manifests/client.pp
ZhongShengping 9412a6f45a Add hooks for external install & svc management
This adds defined anchor points for external modules to hook into the
software install, config and service dependency chain.  This allows
external modules to manage software installation (virtualenv,
containers, etc) and service management (pacemaker) without needing rely
on resources that may change or be renamed.

Change-Id: If27e91cee37d816bfc7b577a154c71a9e5a48324
2016-12-07 10:51:35 +08:00

25 lines
454 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::deps
include ::murano::params
package { 'python-muranoclient':
ensure => $package_ensure,
name => $::murano::params::pythonclient_package_name,
tag => ['openstack', 'murano-packages'],
}
}