
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I107209fdfd7136251a94887bec6499d36fdbf9d9 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
38 lines
1.2 KiB
Puppet
38 lines
1.2 KiB
Puppet
# == Class: glance::os_brick
|
|
#
|
|
# Configure os_brick options
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*lock_path*]
|
|
# (Optional) Directory to use for os-brick lock files.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*wait_mpath_device_attempts*]
|
|
# (Optional) Number of attempts for the multipath device to be ready for I/O
|
|
# after it was created.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*wait_mpath_device_interval*]
|
|
# (Optional) Interval value to wait for multipath device to be ready for I/O.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class glance::os_brick (
|
|
$lock_path = $facts['os_service_default'],
|
|
$wait_mpath_device_attempts = $facts['os_service_default'],
|
|
$wait_mpath_device_interval = $facts['os_service_default'],
|
|
) {
|
|
include glance::deps
|
|
|
|
oslo::os_brick { 'glance_api_config':
|
|
lock_path => $lock_path,
|
|
wait_mpath_device_attempts => $wait_mpath_device_attempts,
|
|
wait_mpath_device_interval => $wait_mpath_device_interval,
|
|
}
|
|
oslo::os_brick { 'glance_cache_config':
|
|
lock_path => $lock_path,
|
|
wait_mpath_device_attempts => $wait_mpath_device_attempts,
|
|
wait_mpath_device_interval => $wait_mpath_device_interval,
|
|
}
|
|
}
|