Puppet Class: tripleo::profile::base::barbican
- Defined in:
- manifests/profile/base/barbican.pp
Overview
27 28 29 30 31 32 33 34 35 36 |
# File 'manifests/profile/base/barbican.pp', line 27
class tripleo::profile::base::barbican (
$step = Integer(lookup('step')),
) {
if $step >= 3 {
include barbican
include barbican::config
include barbican::db
}
}
|