Files
puppet-swift/manifests/proxy/staticweb.pp
Elizabeth K. Joseph f569ed0eda Fix up some typos in the proxy manifests
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
2016-05-01 11:48:13 -07:00

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