Created
July 12, 2013 05:14
-
-
Save viglesiasce/5981921 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| ### Packages | |
| rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm | |
| yum install -y euca2ools ntp cpan perl-Time-HiRes python-setuptools gcc python-devel unzip java-1.7.0-openjdk.x86_64 wget git | |
| yum groupinstall -y --nogpg Fonts | |
| ### Sync time | |
| ntpdate -u pool.ntp.org | |
| yum install -y | |
| 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 | |
| yum install -y jenkins | |
| chkconfig jenkins on | |
| service jenkins start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment