
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I8ebe256188945780f730ab51fc07ee55d2ecd508 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
57 lines
1.7 KiB
Puppet
57 lines
1.7 KiB
Puppet
# == Define: oslo::reports
|
|
#
|
|
# Configure oslo_reports options
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*config*]
|
|
# (Optional) The resource type used to apply configuration parameters.
|
|
# Defaults to $name
|
|
#
|
|
# [*log_dir*]
|
|
# (Optional) Path to a log directory where to create a file
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*file_event_handler*]
|
|
# (Optional) The path to a file to watch for changes to trigger the reports.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*file_event_handler_interval*]
|
|
# (Optional) How many seconds to wait between pools when file_event_handler
|
|
# is set.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) ensure state for package.
|
|
# Defaults to 'present'
|
|
#
|
|
# [*manage_package*]
|
|
# (Optional) Manage oslo.reports package.
|
|
# Defaults to false
|
|
#
|
|
define oslo::reports (
|
|
$config = $name,
|
|
$log_dir = $facts['os_service_default'],
|
|
$file_event_handler = $facts['os_service_default'],
|
|
$file_event_handler_interval = $facts['os_service_default'],
|
|
$package_ensure = 'present',
|
|
Boolean $manage_package = false,
|
|
) {
|
|
include oslo::params
|
|
|
|
if $manage_package {
|
|
stdlib::ensure_packages( 'oslo.reports', {
|
|
name => $oslo::params::oslo_reports_package_name,
|
|
ensure => $package_ensure,
|
|
tag => ['openstack'],
|
|
})
|
|
}
|
|
|
|
$oslo_reports_options = {
|
|
'oslo_reports/log_dir' => { value => $log_dir },
|
|
'oslo_reports/file_event_handler' => { value => $file_event_handler },
|
|
'oslo_reports/file_event_handler_interval' => { value => $file_event_handler_interval },
|
|
}
|
|
create_resources($config, $oslo_reports_options)
|
|
}
|