22 lines
619 B
Puppet
22 lines
619 B
Puppet
## cd_alloy::yumrepo.pp
|
|
# Module name: cd_alloy
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary class install yum repos for the cd_alloy module
|
|
##############################################################################
|
|
class cd_alloy::main::yumrepo (
|
|
|
|
) inherits cd_alloy::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',
|
|
}
|
|
}
|