178f4b18dc
* Fix following warnings: * double quoted string containing no variables * indentation of => is not properly aligned * mode should be represented as a 4 digit octal value or symbolic mode * string containing only a variable * top-scope variable being used without an explicit namespace * unquoted file mode * variable not enclosed in {} * Fix following errors: * trailing whitespace found * two-space soft tabs not used * Remove quotes around class in include/require statements Change-Id: Ia920d848e1955612a6486ec8731309e6d3a70f63
28 lines
441 B
Puppet
28 lines
441 B
Puppet
#
|
|
# Configure swift cache_errors.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include swift::proxy::tempurl
|
|
#
|
|
# == Authors
|
|
#
|
|
# Mehdi Abaakouk <sileht@sileht.net>
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
|
|
class swift::proxy::tempurl() {
|
|
|
|
concat::fragment { 'swift-proxy-tempurl':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/tempurl.conf.erb'),
|
|
order => '29',
|
|
}
|
|
|
|
}
|