Puppet Class: alloy_cd::main::yumrepo
- Inherits:
- alloy_cd::params
- Defined in:
- manifests/main/yumrepo.pp
Summary
class install yum repos for the alloy_cd moduleOverview
alloy_cd::main::yumrepo.pp Module name: alloy_cd Author: Arne Teuke (arne_teuke@confdroid.com)
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/main/yumrepo.pp', line 6
class alloy_cd::main::yumrepo (
) inherits alloy_cd::params {
# test
yumrepo { 'grafana':
ensure => 'present',
name => 'grafana',
descr => 'grafana',
baseurl => 'https://packages.grafana.com/oss/rpm',
gpgkey => 'https://packages.grafana.com/gpg.key',
enabled => '1',
gpgcheck => '1',
target => '/etc/yum.repo.d/grafana.repo',
}
}
|