This bugfix allows the ring_script.rb to parse output from the havana versions (swift 1.10) of swift-ring-builder successfully. Change-Id: I98ed30837226c28fb90910c1ae117506dfe14f8c Fixes-Bug: #1266922
21 lines
870 B
Ruby
21 lines
870 B
Ruby
name 'openstack-object-storage'
|
|
maintainer 'ATT, Inc.'
|
|
license 'Apache 2.0'
|
|
description 'Installs and configures Openstack Swift'
|
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
|
version '8.0.1'
|
|
recipe 'openstack-object-storage::setup', 'Does initial setup of a swift cluster'
|
|
recipe 'openstack-object-storage::account-server', 'Installs the swift account server'
|
|
recipe 'openstack-object-storage::object-server', 'Installs the swift object server'
|
|
recipe 'openstack-object-storage::proxy-server', 'Installs the swift proxy server'
|
|
recipe 'openstack-object-storage::container-server', 'Installs the swift container server'
|
|
|
|
%w{ centos ubuntu }.each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'memcached'
|
|
depends 'sysctl'
|
|
depends 'statsd'
|
|
depends 'apt'
|