Skip to content
This repository has been archived by the owner on Feb 13, 2018. It is now read-only.

Commit

Permalink
Manually install the github-oauth plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam J Sharpe committed Jul 5, 2013
1 parent c2fbbda commit 065b700
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Binary file not shown.
16 changes: 16 additions & 0 deletions modules/ci_environment/manifests/jenkins_master.pp
Expand Up @@ -18,4 +18,20 @@
isdefaultvhost => true,
servername => $jenkins_hostname
}

# This file resource installs a Jenkins plugin manually. The build we are
# using is from a Pull Request and has not been merged into mainline. With
# any luck, when version 0.14 is release, we can just use that.
# Download URL:
# https://buildhive.cloudbees.com/job/jenkinsci/job/github-oauth-plugin
# /34/org.jenkins-ci.plugins$github-oauth/
#
file {'/var/lib/jenkins/plugins/github-oauth.hpi':
ensure => 'present',
owner => 'jenkins',
group => 'nogroup',
mode => '0644',
source => 'puppet://modules/ci_environment/jenkins-plugin-github-oauth-0.14-b34.hpi',
notify => Class['jenkins::service'],
}
}

0 comments on commit 065b700

Please sign in to comment.