9412a6f45a
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
25 lines
454 B
Puppet
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'],
|
|
}
|
|
|
|
}
|