
In openstack_extras_repo_spec, we hardcode the version of the release. It was liberty, it's now mitaka since our recent CI bump. Change-Id: I90b6f0bbeb76c870f0ab26cf0ff9bdcbb0cb5ca8 Partial-Bug: #1535382
19 lines
597 B
Puppet
19 lines
597 B
Puppet
# == Class: openstack_extras::repo::debian::params
|
|
#
|
|
# This repo sets defaults for the debian osfamily
|
|
#
|
|
class openstack_extras::repo::debian::params
|
|
{
|
|
$release = 'mitaka'
|
|
|
|
$uca_name = 'ubuntu-cloud-archive'
|
|
$uca_location = 'http://ubuntu-cloud.archive.canonical.com/ubuntu'
|
|
$uca_repos = 'main'
|
|
$uca_required_packages = 'ubuntu-cloud-keyring'
|
|
|
|
$whz_name = 'debian_wheezy'
|
|
$whz_location = 'http://archive.gplhost.com/debian'
|
|
$whz_repos = 'main'
|
|
$whz_required_packages = 'gplhost-archive-keyring'
|
|
}
|