
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: Ibc184a50cf16b7048e0f7249f8894d8661bb76fe
23 lines
343 B
Puppet
23 lines
343 B
Puppet
#
|
|
# Installs the aodh python library.
|
|
#
|
|
# == parameters
|
|
# [*ensure*]
|
|
# ensure state for pachage.
|
|
#
|
|
class aodh::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include ::aodh::deps
|
|
include ::aodh::params
|
|
|
|
package { 'python-aodhclient':
|
|
ensure => $ensure,
|
|
name => $::aodh::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
}
|
|
|