d1c198ced9
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I309dc0910bf7111cba3aaa58688b862590043973
19 lines
346 B
Puppet
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
|
|
}
|
|
}
|