
The introductory comments in the manifests for proxy keystone and tempauth had some typos to be corrected. The proxy staticweb comments accidentally called itself the manifest for cache_errors, so fix that up as well. Change-Id: I76c7c5201aa351ffcb060bf6ec5127aeda08ee2b
28 lines
538 B
Puppet
28 lines
538 B
Puppet
#
|
|
# Configure swift staticweb, see documentation for Swift staticweb middleware
|
|
# to understand more about configuration.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include 'swift::proxy::staticweb'
|
|
#
|
|
# == Authors
|
|
#
|
|
# Mehdi Abaakouk <sileht@sileht.net>
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::staticweb() {
|
|
|
|
concat::fragment { 'swift-proxy-staticweb':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/staticweb.conf.erb'),
|
|
order => '32',
|
|
}
|
|
|
|
}
|