0f7601a358
Puppet does not recommend the use of hyphens in class names. This change deprecates classes with hyphens and inform the users to use the new ones. Backward compatibility is preserved. Change-Id: I4991c956e297d76423a805558d9b6731473a4a51
16 lines
304 B
Puppet
16 lines
304 B
Puppet
#
|
|
# Configure swift proxy-logging.
|
|
#
|
|
# == Authors
|
|
#
|
|
# Joe Topjian joe@topjian.net
|
|
#
|
|
class swift::proxy::proxy_logging {
|
|
|
|
concat::fragment { 'swift_proxy-logging':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/proxy-logging.conf.erb'),
|
|
order => '27',
|
|
}
|
|
}
|