Puppet Class: swift::proxy::gatekeeper

Defined in:
manifests/proxy/gatekeeper.pp

Overview

Parameters:

  • log_name (Any) (defaults to: 'gatekeeper')
  • log_facility (Any) (defaults to: 'LOG_LOCAL0')
  • log_level (Any) (defaults to: 'INFO')
  • log_headers (Any) (defaults to: 'false')
  • log_address (Any) (defaults to: '/dev/log')


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',
  }

}