Created
January 28, 2013 01:05
-
-
Save philosuke/4651874 to your computer and use it in GitHub Desktop.
jenkins-install.sh
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
# -*- coding: utf-8 -*- | |
# file: jenkins-install.sh | |
# prepare | |
[ -d "/tmp/jenkins" ] || mkdir -p /tmp/jenkins | |
# setup | |
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo | |
rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key | |
# install | |
yum install jenkins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment