Created
July 17, 2013 22:25
-
-
Save styliii/6025094 to your computer and use it in GitHub Desktop.
redis recipe for cookbook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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