Created
May 18, 2011 16:22
-
-
Save nstielau/978920 to your computer and use it in GitHub Desktop.
A simple Chef recipe to install Jenkins
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
# | |
# Cookbook Name:: jenkins | |
# Recipe:: default | |
# | |
# https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Ubuntu | |
# This is super-simple, compared to the other Chef cookbook I found | |
# for Jenkins (https://github.com/fnichol/chef-jenkins). | |
# | |
# This doesn't include Chef libraries for adding Jenkin's jobs via | |
# the command line, but it does get Jenkins up and running. | |
# | |
# I'd rather build up a Chef cookbook than strip it down, so here's | |
# a good starting point. | |
include_recipe "apt" | |
include_recipe "java" | |
apt_repository "jenkins" do | |
uri "http://pkg.jenkins-ci.org/debian" | |
key "http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key" | |
components ["binary/"] | |
action :add | |
end | |
package "jenkins" | |
service "jenkins" do | |
supports [:stop, :start, :restart] | |
action [:start, :enable] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment