
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: I0d18ec6ffe6b54c85773a6dabb0ed7b6f59a12f4
26 lines
450 B
Puppet
26 lines
450 B
Puppet
# == Class: ceilometer::client
|
|
#
|
|
# Installs the ceilometer python library.
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for pachage.
|
|
# Defaults to 'present'.
|
|
#
|
|
class ceilometer::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include ::ceilometer::deps
|
|
include ::ceilometer::params
|
|
|
|
package { 'python-ceilometerclient':
|
|
ensure => $ensure,
|
|
name => $::ceilometer::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
}
|
|
|