Sha256: 25583c36a59d1fae04ad6bd366f11a0f04ffc468c5108550a933a0234905a5ca
Contents?: true
Size: 902 Bytes
Versions: 2
Compression:
Stored size: 902 Bytes
Contents
redis puppet module =================== [![Build Status](https://secure.travis-ci.org/thomasvandoren/puppet-redis.png)](http://travis-ci.org/thomasvandoren/puppet-redis) Install and configure redis. Usage ----- Installs redis server and client with reasonable defaults (version 2.4.13 is included in the module). ```puppet include redis ``` Installs redis server and client with version 2.6.5. ```puppet class { 'redis': version => '2.6.5', } ``` Installs version 2.4.17, listens on port 6900, binds to address 10.1.2.3 (instead of all available interfaces), sets max memory to 1 gigabyte, and sets a password from hiera. ```puppet class { 'redis': version => '2.4.17', redis_port => '6900', redis_bind_address => '10.1.2.3', redis_password => hiera('redis_password'), redis_max_memory => '1gb', } ``` Authors ------- Thomas Van Doren License ------- BSD
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-boxen-0.0.4 | puppet-modules/redis/README.md |
vagrant-boxen-0.0.3 | puppet-modules/redis/README.md |