Skip to content

Instantly share code, notes, and snippets.

@botchagalupe
Created June 24, 2011 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save botchagalupe/1045259 to your computer and use it in GitHub Desktop.
Save botchagalupe/1045259 to your computer and use it in GitHub Desktop.
Jenkins in two primatives
include_recipe "apt"

apt_repository "jenkins" do
  uri "http://pkg.jenkins-ci.org/debian"
  components ["binary/"]
  key "http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key"
  action :add
end

package "jenkins" do
  action :install
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment