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
48 lines (40 loc) · 1.54 KB
/
metadata.rb
File metadata and controls
48 lines (40 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name 'memcached'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache 2.0'
description 'Installs memcached and provides a define to set up an instance of memcache via runit'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.7.3'
depends 'runit', '~> 1.0'
depends 'yum', '~> 3.0'
depends 'yum-epel'
supports 'amazon'
supports 'centos'
supports 'debian'
supports 'fedora'
supports 'redhat'
supports 'scientific'
supports 'smartos'
supports 'suse'
supports 'ubuntu'
recipe 'memcached', 'Installs and configures memcached'
attribute 'memcached/memory',
:display_name => 'Memcached Memory',
:description => 'Memory allocated for memcached instance',
:default => '64'
attribute 'memcached/port',
:display_name => 'Memcached Port',
:description => 'Port to use for memcached instance',
:default => '11211'
attribute 'memcached/user',
:display_name => 'Memcached User',
:description => 'User to run memcached instance as',
:default => 'nobody'
attribute 'memcached/listen',
:display_name => 'Memcached IP Address',
:description => 'IP address to use for memcached instance',
:default => '0.0.0.0'
attribute 'memcached/logfilename',
:display_name => 'Memcached logfilename',
:description => 'The filename used to log memcached',
:default => 'memcached.log'