Add define oslo::versionedobjects

This patch aims to add a new define to manage parameters in
[oslo_versionedobjects] which belongs to oslo.versionedobjects.
This commit is contained in:
Xingchao Yu 2016-01-22 15:18:28 +08:00
parent feb5132312
commit 27e7f82841
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# == Define: oslo::versionedobjects
#
# Configure oslo_versionedobjects options
#
# This resource configures oslo.versionedobjects resources for an OpenStack service.
# It will manage the [oslo_versionedobjects] section in the given config resource.
#
# === Parameters:
#
# [*fatal_exception_format_errors*]
# (Optional) Make exception message format errors fatal.
# Defaults to false.
#
define oslo::versionedobjects(
$fatal_exception_format_errors = false,
) {
create_resources($name, {'oslo_versionedobjects/fatal_exception_format_errors' => { value => $fatal_exception_format_errors }})
}