
Move the EPEL testing to its own context because we were testing with a specified value that was not the default. Change-Id: Ib51009fb3584ea6ec8f423a5e8b2486714e47fe8
18 lines
559 B
Puppet
18 lines
559 B
Puppet
# == Class: openstack_extras::repo::debian::params
|
|
#
|
|
# This repo sets defaults for the debian osfamily
|
|
#
|
|
class openstack_extras::repo::debian::params
|
|
{
|
|
$release = 'ussuri'
|
|
|
|
$uca_name = 'ubuntu-cloud-archive'
|
|
$uca_location = 'http://ubuntu-cloud.archive.canonical.com/ubuntu'
|
|
$uca_repos = 'main'
|
|
$uca_required_packages = 'ubuntu-cloud-keyring'
|
|
|
|
$deb_name = 'debian-openstack-backports'
|
|
$deb_repos = 'main'
|
|
$deb_required_packages = 'openstack-backports-archive-keyring'
|
|
}
|