20 lines
777 B
Ruby
20 lines
777 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 "1.1.0"
|
|
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"
|