39d1417fbd
the proxy.
28 lines
460 B
Puppet
28 lines
460 B
Puppet
#
|
|
# Configure swift cache_errors.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include 'swift::proxy::catch_errors'
|
|
#
|
|
# == Authors
|
|
#
|
|
# Francois Charlier fcharlier@ploup.net
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
|
|
class swift::proxy::catch_errors() {
|
|
|
|
concat::fragment { 'swift_catch_errors':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/catch_errors.conf.erb'),
|
|
order => '24',
|
|
}
|
|
|
|
}
|