Puppet Class: cinder::os_brick

Defined in:
manifests/os_brick.pp

Overview

Class: cinder::os_brick

Configure os_brick options

Parameters:

lock_path

(Optional) Directory to use for os-brick lock files. Defaults to $facts

Parameters:

  • lock_path (Any) (defaults to: $facts['os_service_default'])


11
12
13
14
15
16
17
18
# File 'manifests/os_brick.pp', line 11

class cinder::os_brick(
  $lock_path = $facts['os_service_default'],
) {

  oslo::os_brick { 'cinder_config':
    lock_path => $lock_path
  }
}