
* `python-swiftclient` is now installed by default. * Fixed swift3. * Fixed s3token. * Recreated authtoken - it used to be configured in the Keystone module. * Created proxy-logging filter
35 lines
576 B
Puppet
35 lines
576 B
Puppet
#
|
|
# Configure swift swift3.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# == Authors
|
|
#
|
|
# François Charlier fcharlier@ploup.net
|
|
# Joe Topjian joe@topjian.net
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::swift3(
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include $::swift::params
|
|
|
|
package { 'swift-plugin-s3':
|
|
name => $::swift::params::swift3,
|
|
ensure => $ensure,
|
|
}
|
|
|
|
concat::fragment { 'swift_swift3':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/swift3.conf.erb'),
|
|
order => '27',
|
|
}
|
|
|
|
}
|