Merge "Parameterize git revision of jeepyb"

This commit is contained in:
Jenkins 2015-05-04 15:03:31 +00:00 committed by Gerrit Code Review
commit 86ca4f8dcf
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,
}