Files
confdroid_alloy/manifests/main/yumrepo.pp
2025-06-13 16:05:16 +02:00

21 lines
624 B
Puppet

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