Skip to content

Instantly share code, notes, and snippets.

@nicopaez
Created January 21, 2015 16:54
Show Gist options
  • Save nicopaez/d14aa26f00a7525fefaf to your computer and use it in GitHub Desktop.
Save nicopaez/d14aa26f00a7525fefaf to your computer and use it in GitHub Desktop.
# 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