2012-06-04 13:18:12 -07:00
|
|
|
#
|
|
|
|
# Configure swift swift3.
|
|
|
|
#
|
|
|
|
# == Dependencies
|
|
|
|
#
|
2015-03-23 18:11:23 +01:00
|
|
|
# == Parameters
|
|
|
|
#
|
|
|
|
# [*ensure*]
|
|
|
|
# Enable or not ceilometer fragment
|
|
|
|
# Defaults to 'present'
|
|
|
|
#
|
2012-06-04 13:18:12 -07:00
|
|
|
# == Examples
|
|
|
|
#
|
|
|
|
# == Authors
|
|
|
|
#
|
2013-01-24 08:27:19 -08:00
|
|
|
# Francois Charlier fcharlier@ploup.net
|
2012-10-28 18:12:04 -06:00
|
|
|
# Joe Topjian joe@topjian.net
|
2012-06-04 13:18:12 -07:00
|
|
|
#
|
|
|
|
# == Copyright
|
|
|
|
#
|
|
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
|
|
#
|
2012-10-28 18:12:04 -06:00
|
|
|
class swift::proxy::swift3(
|
|
|
|
$ensure = 'present'
|
|
|
|
) {
|
|
|
|
|
2015-03-23 18:25:34 +01:00
|
|
|
include ::swift::params
|
2012-10-28 18:12:04 -06:00
|
|
|
|
|
|
|
package { 'swift-plugin-s3':
|
|
|
|
ensure => $ensure,
|
2013-08-25 23:29:34 -04:00
|
|
|
name => $::swift::params::swift3,
|
2015-03-29 17:02:47 +02:00
|
|
|
tag => 'openstack',
|
2012-10-28 18:12:04 -06:00
|
|
|
}
|
2012-06-04 13:18:12 -07:00
|
|
|
|
|
|
|
concat::fragment { 'swift_swift3':
|
|
|
|
target => '/etc/swift/proxy-server.conf',
|
|
|
|
content => template('swift/proxy/swift3.conf.erb'),
|
|
|
|
order => '27',
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|