
This switches the default release to antelope as we are close to create our antelope releases. Change-Id: Idfc74b71c6255ec79508ed62a0df941655a74424
26 lines
615 B
Puppet
26 lines
615 B
Puppet
# == Class: openstack_extras::repo::redhat::params
|
|
#
|
|
# This repo sets defaults for use with the redhat
|
|
# OS family repo classes.
|
|
#
|
|
class openstack_extras::repo::redhat::params {
|
|
$release = 'antelope'
|
|
|
|
$centos_mirror_url = 'http://mirror.stream.centos.org'
|
|
|
|
$repo_defaults = {
|
|
'enabled' => '1',
|
|
'gpgcheck' => '1',
|
|
'mirrorlist' => 'absent',
|
|
'notify' => 'Exec[yum_refresh]',
|
|
'require' => 'Anchor[openstack_extras_redhat]',
|
|
}
|
|
|
|
$gpgkey_defaults = {
|
|
'owner' => 'root',
|
|
'group' => 'root',
|
|
'mode' => '0644',
|
|
'before' => 'Anchor[openstack_extras_redhat]',
|
|
}
|
|
}
|