14 lines
304 B
Puppet
14 lines
304 B
Puppet
#Class for SUNET-Drive-Cache
|
|
class sunetdrive::cache (
|
|
$bootstrap = undef,
|
|
$location = undef,
|
|
$override_config = undef,
|
|
$override_compose = undef,
|
|
$override_redis_conf = undef
|
|
) {
|
|
$cache = sunetdrive::cache_type { 'base_cache':
|
|
bootstrap => $bootstrap,
|
|
location => $location,
|
|
}
|
|
}
|