Skip to content

Instantly share code, notes, and snippets.

@styliii
Created July 17, 2013 22:25
Show Gist options
  • Save styliii/6025094 to your computer and use it in GitHub Desktop.
Save styliii/6025094 to your computer and use it in GitHub Desktop.
redis recipe for cookbook
package "python-software-properties" do
action :install
end
execute "redis ppa install" do
command "/usr/bin/add-apt-repository ppa:chris-lea/redis-server"
command "/usr/bin/apt-get -y update"
action :run
end
package "redis-server" do
action :install
end
service "redis-server" do
action :enable
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment