Puppet Class: cloud::cache
- Defined in:
- manifests/cache.pp
Overview
27 28 29 30 31 32 33 34 35 36 |
# File 'manifests/cache.pp', line 27
class cloud::cache (
$listen_ip = $os_params::internal_netif_ip,
){
class { 'memcached':
listen_ip => $listen_ip,
max_memory => '60%',
}
}
|