├── .fixtures.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── DEVELOP.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── manifests ├── init.pp ├── install.pp ├── installbinary.pp ├── params.pp ├── sentinel.pp └── server.pp ├── metadata.json ├── spec ├── classes │ └── install_spec.rb └── spec_helper.rb └── templates ├── etc ├── init.d │ ├── debian_redis-sentinel.erb │ ├── debian_redis-server.erb │ ├── gentoo_redis-sentinel.erb │ ├── gentoo_redis-server.erb │ ├── redhat_redis-sentinel.erb │ ├── redhat_redis-server.erb │ └── sles_redis-server.erb ├── redis.conf.erb └── sentinel.conf.erb ├── redis_logrotate.conf.erb ├── sentinel_logrotate.conf.erb └── systemd ├── redis.service.erb └── sentinel.service.erb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/DEVELOP.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/Rakefile -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/manifests/install.pp -------------------------------------------------------------------------------- /manifests/installbinary.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/manifests/installbinary.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /manifests/sentinel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/manifests/sentinel.pp -------------------------------------------------------------------------------- /manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/manifests/server.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/classes/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/spec/classes/install_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/etc/init.d/debian_redis-sentinel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/debian_redis-sentinel.erb -------------------------------------------------------------------------------- /templates/etc/init.d/debian_redis-server.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/debian_redis-server.erb -------------------------------------------------------------------------------- /templates/etc/init.d/gentoo_redis-sentinel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/gentoo_redis-sentinel.erb -------------------------------------------------------------------------------- /templates/etc/init.d/gentoo_redis-server.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/gentoo_redis-server.erb -------------------------------------------------------------------------------- /templates/etc/init.d/redhat_redis-sentinel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/redhat_redis-sentinel.erb -------------------------------------------------------------------------------- /templates/etc/init.d/redhat_redis-server.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/redhat_redis-server.erb -------------------------------------------------------------------------------- /templates/etc/init.d/sles_redis-server.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/init.d/sles_redis-server.erb -------------------------------------------------------------------------------- /templates/etc/redis.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/redis.conf.erb -------------------------------------------------------------------------------- /templates/etc/sentinel.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/etc/sentinel.conf.erb -------------------------------------------------------------------------------- /templates/redis_logrotate.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/redis_logrotate.conf.erb -------------------------------------------------------------------------------- /templates/sentinel_logrotate.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/sentinel_logrotate.conf.erb -------------------------------------------------------------------------------- /templates/systemd/redis.service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/systemd/redis.service.erb -------------------------------------------------------------------------------- /templates/systemd/sentinel.service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echocat/puppet-redis/HEAD/templates/systemd/sentinel.service.erb --------------------------------------------------------------------------------