Puppet Class: swift::proxy::gatekeeper
- Defined in:
- manifests/proxy/gatekeeper.pp
Overview
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'manifests/proxy/gatekeeper.pp', line 39
class swift::proxy::gatekeeper(
$log_name = 'gatekeeper',
$log_facility = 'LOG_LOCAL0',
$log_level = 'INFO',
$log_headers = 'false',
$log_address = '/dev/log'
) {
concat::fragment { 'swift_gatekeeper':
target => '/etc/swift/proxy-server.conf',
content => template('swift/proxy/gatekeeper.conf.erb'),
order => '34',
}
}
|