Files
puppet-swift/manifests/proxy/formpost.pp
David Moreau-Simard e8959ee631 Fix comment typo
Change-Id: I391fc17ade74b949ead322f57b0703107a33aa5a
2016-07-15 09:55:56 -04:00

29 lines
465 B
Puppet

#
# Configure swift formpost.
#
# == Dependencies
#
# == Examples
#
# include swift::proxy::formpost
#
# == Authors
#
# Mehdi Abaakouk <sileht@sileht.net>
#
# == Copyright
#
# Copyright 2012 eNovance licensing@enovance.com
#
class swift::proxy::formpost() {
include ::swift::deps
concat::fragment { 'swift-proxy-formpost':
target => '/etc/swift/proxy-server.conf',
content => template('swift/proxy/formpost.conf.erb'),
order => '31',
}
}