
This patch bump puppet-lint gem and add metadata and parameters checks. Metadata lint issues (SPDX ID), missing parameters documentation and syntaxe lint issues was also fixed in this patch Doc for metadata syntax. https://docs.puppetlabs.com/puppet/latest/reference/modules_publishing.html Change-Id: Ia6bb3483b3ffdbeed60b58702a36e0c7b31ffb86
27 lines
444 B
Puppet
27 lines
444 B
Puppet
#
|
|
# Configure swift cache_errors.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include swift::proxy::formpost
|
|
#
|
|
# == Authors
|
|
#
|
|
# Mehdi Abaakouk <sileht@sileht.net>
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::formpost() {
|
|
|
|
concat::fragment { 'swift-proxy-formpost':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/formpost.conf.erb'),
|
|
order => '31',
|
|
}
|
|
|
|
}
|