Puppet Class: openstack_extras::repo::redhat::params
- Inherited by:
-
openstack_extras::repo::redhat::redhat
- Defined in:
- manifests/repo/redhat/params.pp
Overview
Class: openstack_extras::repo::redhat::params
This repo sets defaults for use with the redhat OS family repo classes.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/repo/redhat/params.pp', line 6
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]',
}
}
|