mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-28 18:40:48 +00:00
20 lines
448 B
Ruby
20 lines
448 B
Ruby
|
#
|
||
|
# Cookbook Name:: redis
|
||
|
# Recipe:: default
|
||
|
#
|
||
|
# Copyright 2014, ShareLaTeX
|
||
|
#
|
||
|
|
||
|
# See https://launchpad.net/~chris-lea/+archive/redis-server
|
||
|
apt_repository 'redis-server' do
|
||
|
uri 'http://ppa.launchpad.net/chris-lea/redis-server/ubuntu'
|
||
|
distribution node['lsb']['codename']
|
||
|
components ['main']
|
||
|
keyserver 'keyserver.ubuntu.com'
|
||
|
key 'C7917B12'
|
||
|
end
|
||
|
|
||
|
package 'redis-server' do
|
||
|
action :upgrade
|
||
|
options "--force-yes"
|
||
|
end
|