puppet-swift/manifests/proxy/proxy_logging.pp
Mathieu Gagné 0f7601a358 Deprecate classes with hyphens
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
2013-08-28 20:19:14 -04:00

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