
Recent os-brick supports supports configuration os-brick specific lock_path. This adds the new class to manage the [os_brick] lock_path option. Depends-on: https://review.opendev.org/865771 Change-Id: Ib3b914b83bb61de1592553f7b43d0eace7c26903
19 lines
340 B
Puppet
19 lines
340 B
Puppet
# == Class: nova::os_brick
|
|
#
|
|
# Configure os_brick options
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*lock_path*]
|
|
# (Optional) Directory to use for os-brick lock files.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class nova::os_brick(
|
|
$lock_path = $facts['os_service_default'],
|
|
) {
|
|
|
|
oslo::os_brick { 'nova_config':
|
|
lock_path => $lock_path
|
|
}
|
|
}
|