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