puppet-cinder/manifests/os_brick.pp
Takashi Kajinami d1c198ced9 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: I309dc0910bf7111cba3aaa58688b862590043973
2023-03-01 16:57:02 +09:00

19 lines
346 B
Puppet

# == Class: cinder::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 cinder::os_brick(
$lock_path = $facts['os_service_default'],
) {
oslo::os_brick { 'cinder_config':
lock_path => $lock_path
}
}