889fc86298
This change removes the remaining parameter and resource to manage
api-paste.ini, which were deprecated during the previous cycle[1].
Ironic doesn't rely on the paste deploy mechanism and these
implementations have never been used actually.
[1] 7f88e87fe8
Change-Id: I15e4a1368a5e0606ad2b1fb05a2ce4dc399e9c3b
33 lines
832 B
Puppet
33 lines
832 B
Puppet
# == Class: ironic::config
|
|
#
|
|
# This class is used to manage arbitrary Ironic configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*ironic_config*]
|
|
# (optional) Allow configuration of arbitrary Ironic configurations.
|
|
# The value is an hash of ironic_config resources. Example:
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# ironic_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 ironic::config (
|
|
$ironic_config = {},
|
|
) {
|
|
|
|
include ironic::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $ironic_config)
|
|
|
|
create_resources('ironic_config', $ironic_config)
|
|
}
|