forked from sous-chefs/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
20 lines (16 loc) · 808 Bytes
/
metadata.rb
File metadata and controls
20 lines (16 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name 'memcached'
maintainer 'Chef Software, Inc.'
maintainer_email '[email protected]'
license 'Apache 2.0'
description 'Installs memcached and includes memcached_instance resource for setting up runit memcached instances'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '2.0.2'
depends 'runit', '~> 1.0'
depends 'yum-epel'
depends 'compat_resource'
%w(ubuntu debian redhat centos suse scientific oracle amazon smartos).each do |os|
supports os
end
recipe 'memcached::default', 'Installs and configures memcached'
source_url 'https://github.com/chef-cookbooks/memcached' if respond_to?(:source_url)
issues_url 'https://github.com/chef-cookbooks/memcached/issues' if respond_to?(:issues_url)