Puppet Class: dmlite::dpm::config
- Defined in:
- manifests/dpm/config.pp
Overview
1 2 3 4 5 6 7 8 9 |
# File 'manifests/dpm/config.pp', line 1
class dmlite::dpm::config (
$flavor = 'dpns'
) {
case $flavor {
dpns: { $basepath = 'dpm' }
lfc: { $basepath = 'grid' }
default: { fail("Flavor ${flavor} is not supported by puppet-dmlite") }
}
}
|