Created
January 21, 2015 16:54
-
-
Save nicopaez/d14aa26f00a7525fefaf 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
# rpm -ivh https://yum.puppetlabs.com/el/6.5/products/x86_64/puppetlabs-release-6-10.noarch.rpm | |
# yum install puppet | |
# chkconfig puppet on | |
# puppet module install rtyler/jenkins | |
# puppet module install puppetlabs/git | |
class ciserver { | |
include git | |
class{ 'jenkins': | |
configure_firewall => false | |
} | |
jenkins::plugin { 'credentials': } | |
jenkins::plugin { 'git-client': } | |
jenkins::plugin { 'scm-api': } | |
jenkins::plugin { 'matrix-project': } | |
jenkins::plugin { 'ssh-credentials': } | |
jenkins::plugin { 'mailer': } | |
jenkins::plugin { 'git': } | |
jenkins::plugin { 'greenballs': } | |
} | |
class { 'ciserver': } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment