Added vcsrepo module.

Included the OpenStack-CI VCSRepo module, so we can checkout our
git repository.
This commit is contained in:
Michael Krotscheck 2015-04-20 17:23:38 -07:00
parent cb0b7b3363
commit 452d9770f3
3 changed files with 8 additions and 0 deletions

View File

@ -9,3 +9,4 @@ project_page 'https://github.com/openstack-ci/puppet-refstack'
## Add dependencies, if any:
dependency 'stankevich/python', '= 1.6.6'
dependency 'openstackci/vcsrepo', '= 0.0.8'

View File

@ -11,6 +11,10 @@
{
"name": "stankevich/python",
"version_requirement": ">= 1.6.6"
},
{
"name": "openstackci/vcsrepo",
"version_requirement": ">= 0.0.8"
}
]
}

View File

@ -17,4 +17,7 @@ fi
# Install required puppet modules.
if [ ! -d /etc/puppet/modules/python ]; then
puppet module install stankevich-python --version 1.6.6
fi
if [ ! -d /etc/puppet/modules/vcsrepo ]; then
puppet module install openstackci-vcsrepo --version 0.0.8
fi