41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
name "memcached"
|
|
maintainer "Opscode, Inc."
|
|
maintainer_email "cookbooks@opscode.com"
|
|
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.5.0"
|
|
depends "runit", "~> 1.0"
|
|
depends "yum"
|
|
|
|
recipe "memcached", "Installs and configures memcached"
|
|
|
|
%w{ ubuntu debian redhat fedora centos
|
|
scientific amazon smartos suse }.each do |os|
|
|
supports os
|
|
end
|
|
|
|
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"
|