Parameterize git revision of jeepyb

Allow for the git revision to be set arbitrarily in addition to the source
URI.

Change-Id: I453dcb74b32939f76820736d1ccd064df8561ca2
This commit is contained in:
K Jonathan Harker 2015-04-06 12:10:18 -07:00
parent f6e165e87b
commit 39bb5b4d7b
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
#
class jeepyb (
$git_source_repo = 'https://git.openstack.org/openstack-infra/jeepyb',
$git_revision = 'master',
) {
include mysql::python
@ -40,7 +41,7 @@ class jeepyb (
vcsrepo { '/opt/jeepyb':
ensure => latest,
provider => git,
revision => 'master',
revision => $git_revision,
source => $git_source_repo,
}