You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
561 B
17 lines
561 B
# == Class: openstack_extras::repo::debian::params |
|
# |
|
# This repo sets defaults for the debian osfamily |
|
# |
|
class openstack_extras::repo::debian::params |
|
{ |
|
$release = 'victoria' |
|
|
|
$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' |
|
}
|
|
|