Files
9718f428f5a4fcac5e4be9a208a18e9b98a6e418
puppet-oslo /manifests /os_brick.pp
Takashi Kajinami 9718f428f5 Prepare for voxpupuli-puppet-lint-plugins
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>
2025年08月19日 23:36:36 +09:00

32 lines
1.1 KiB
Puppet

# == Define: oslo::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']
#
define oslo::os_brick (
$lock_path = $facts['os_service_default'],
$wait_mpath_device_attempts = $facts['os_service_default'],
$wait_mpath_device_interval = $facts['os_service_default'],
) {
$os_brick_options = {
'os_brick/lock_path' => { value => $lock_path },
'os_brick/wait_mpath_device_attempts' => { value => $wait_mpath_device_attempts },
'os_brick/wait_mpath_device_interval' => { value => $wait_mpath_device_interval },
}
create_resources($name, $os_brick_options)
}