c54428f524
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: If4f585264f5f5a15549855d97b532866d91f5215
33 lines
797 B
Puppet
33 lines
797 B
Puppet
# == Class: zaqar::config
|
|
#
|
|
# This class is used to manage arbitrary zaqar configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*zaqar_config*]
|
|
# (optional) Allow configuration of arbitrary zaqar configurations.
|
|
# The value is an hash of zaqar_config resources. Example:
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# zaqar_config:
|
|
# DEFAULT/foo:
|
|
# value: fooValue
|
|
# DEFAULT/bar:
|
|
# value: barValue
|
|
#
|
|
# NOTE: The configuration MUST NOT be already handled by this module
|
|
# or Puppet catalog compilation will fail with duplicate resources.
|
|
#
|
|
class zaqar::config (
|
|
$zaqar_config = {},
|
|
) {
|
|
|
|
include ::zaqar::deps
|
|
|
|
validate_hash($zaqar_config)
|
|
|
|
create_resources('zaqar_config', $zaqar_config)
|
|
}
|